imageprocessing icon indicating copy to clipboard operation
imageprocessing copied to clipboard

AttributeError: 'Capture' object has no attribute 'set_panelCorners'

Open Matesanz opened this issue 3 years ago • 0 comments

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)

Matesanz avatar Aug 11 '21 11:08 Matesanz