OpenCV2-Python-Tutorials
OpenCV2-Python-Tutorials copied to clipboard
Update README.md file
The line image, contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE) should be changed to
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
in the readme file.
cv2.findContours() function returns only contours and hierarchy but not the image which is given incorrectly in the documentation.
OpenCv: 4.1.2 Python: 3.7.3
@abidrahmank