1 | initial version |
Try this:
import cv2
img = cv2.imread('bio.png') imgray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) ret, thresh = cv2.threshold(imgray, 50, 255, 0) contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_NONE) print("Number of contours = {}".format(str(len(contours)))) print('contours {}'.format(contours[0]))
cv2.drawContours(img, contours, -1, (0, 255, 0), 2) cv2.drawContours(imgray, contours, -1, (0, 255, 0), 3)
cv2.imshow('Image', img) cv2.imshow('Image GRAY', imgray) cv2.waitKey(0) cv2.destroyAllWindows()
Output:
2 | No.2 Revision |
Try this:
#!/usr/bin/python3.8.1
#OpenCV
4.2.0, Raspberry pi 3/3b/4b, Buster import cv2
Output: