파이썬 OpenCV 라벨링(Labeling)
Labeling 라벨링은 이진화된 이미지에서 연결되어 있는 픽셀들을 Grouping 하는 작업입니다. connectedComponentsWithStats 를 사용합니다. cv2.connectedComponentsWithStats(src, labels=None, stats=None, centroids=None, connectivity=None, ltype=None) -> retval, labels, stats, centroids src: 입력 이미지 (grayscale) labels: 레이블 맵 행렬(numpy.ndarray, src 와 동일 타입) stats: connected components 를 감싸는 직사각형(bounding box) 및 픽셀 정보를 담고 있음 centroids: 각 connect..