Saree-Design-App / utils /segmentation.py
MBG0903's picture
Create segmentation.py
5732347 verified
Raw
History Blame Contribute Delete
150 Bytes
import cv2
def get_connected_regions(binary):
num_labels, labels = cv2.connectedComponents(
binary
)
return num_labels, labels