imageprocessing
imageprocessing copied to clipboard
AttributeError: 'Capture' object has no attribute 'set_panelCorners'
Problem
When running Tutorial3 I step on this problem in the first cell:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-1-01d92525bd97> in <module>
15 [[807,632],[648,634],[645,473],[805,471]]]
16
---> 17 cap.set_panelCorners(panelCorners)
AttributeError: 'Capture' object has no attribute 'set_panelCorners'
Fix:
Change this line in first code cell:
cap.set_panelCorners(panelCorners)
to:
cap.set_panel_corners(panelCorners)