Error When Using Cv2.findcontours
I tried to find contours for image, but it gives an error. My code is: import cv2 import numpy as np img = cv2.imread('star.jpg',0) ret,thresh = cv2.threshold(img,127,255,0) co
Solution 1:
Solved this problem by updating my python version to 3.4 and opencv version 3. But cannot find real solutions for this. Why python 2.x versions not fully support for openCV
Post a Comment for "Error When Using Cv2.findcontours"