I followed a blob detection example (using cv2.SimpleBlobDetector) and successfully detected the blobs in my binary image. But then I don\'t know how to extract the
cv2.SimpleBlobDetector
If you have a list of keypoints. Then you can print as shown below
for keyPoint in keyPoints: x = keyPoint.pt[0] y = keyPoint.pt[1] s = keyPoint.size
Edit: Size determines the diameter of the meaningful keypoint neighborhood. You can use that size and roughly calculate the area of the blob.