Reputation: 3
I have problems to do a proper edge detection on the following picture. My goal is to get an edge detecion arround every individual bubble. I used Canny edge detection from cv2, the bubbles that are to close together are merged. Do you have any idea how i can detect any individual bubble?
Thanks best regards
Upvotes: 0
Views: 190
Reputation: 11
I used this methodology to segment bubbles in a liquid foam:
labels = measure.label(binary, connectivity=2)
props = measure.regionprops(labels)
prop.equivalent_diameter
.Upvotes: 1