5

I am trying to run the website code to create the image.

When I run the code it gives me an error:

cv2.error: OpenCV(4.1.0) 
/Users/travis/build/skvark/opencv-python/opencv/modules/imgproc/src/shapedescr.cpp:274: 
error: (-215:Assertion failed) npoints >= 0 && (depth == CV_32F || depth == CV_32S) 
in function 'contourArea'

I am not sure about the reason behind it.

Thomas Weller
  • 49,619
  • 19
  • 114
  • 198
qing zhang
  • 117
  • 1
  • 2
  • 12

2 Answers2

9

The repo is clearly written for OpenCV 3.x. But, you are running on OpenCV 4.1. Repo code takes find_contour's second return value for contours( find_contours(...)[1] ). You should change 1 to 0.

Sıddık Açıl
  • 889
  • 5
  • 17
4

cnts = cv2.findContours(...)[0]

this should solve your problem as in OpenCV (4>) findContours(...)[0] gives you the contours

Sahana M
  • 329
  • 3
  • 4