Why can "cv2.findContours()" return only one contour point?


cnts,hie= cv2.findContours(im_binary,
cv2.RETR_EXTERNAL,
cv2.CHAIN_APPROX_NONE)

print(cnts)