반응형
OpenCV Python 검은색 빈 공간 채우기
OpenCV/OpenCV 강좌2024. 4. 19. 21:35OpenCV Python 검은색 빈 공간 채우기

검은색 빈공간을 채우는 OpenCV Python 예제입니다. 2024. 4. 17 최초 작성 실행 결과입니다. 왼쪽 원본 이미지에 보이는 검은색 공백들이 메꿔진 결과가 오른쪽 결과 이미지에 보입니다. 전체 코드입니다. import cv2 def fill_internal_areas(image_array): # 그레이스케일로 변환합니다. gray = cv2.cvtColor(image_array, cv2.COLOR_BGR2GRAY) # 컨투어를 찾습니다. contours, hierarchy = cv2.findContours(gray, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_SIMPLE) if contours and hierarchy is not None: for idx, contour in..

반응형
image