You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only for some images the text detection fails with the error:
cv2.polylines(img, [poly.reshape((-1, 1, 2))], True, color=(0, 0, 255), thickness=2)
cv2.error: OpenCV(4.6.0) 👎 error: (-5:Bad argument) in function 'polylines'
Overload resolution failed:
Layout of the output array img is incompatible with cv::Mat
Expected Ptrcv::UMat for argument 'img'
I have looked for a difference between the working and to failed images but cannot seem to find a difference?
The text was updated successfully, but these errors were encountered:
I don't understand the question properly, but in my experience, this error occurs when opencv expects a numpy array, and most of the time its receiving None instead of a numpy array, and that could happen by a lot of different reasons, but its usually a problem at loading the image
Only for some images the text detection fails with the error:
cv2.polylines(img, [poly.reshape((-1, 1, 2))], True, color=(0, 0, 255), thickness=2)
cv2.error: OpenCV(4.6.0) 👎 error: (-5:Bad argument) in function 'polylines'
I have looked for a difference between the working and to failed images but cannot seem to find a difference?
The text was updated successfully, but these errors were encountered: