반응형
OpenCV 기반으로 파란공 트래킹(tracking)하여 그림 그리기
OpenCV/OpenCV 강좌2020. 3. 26. 11:36OpenCV 기반으로 파란공 트래킹(tracking)하여 그림 그리기

이번 영상에서는 OpenCV를 사용하여 파란공의 위치를 트래킹하여 영상에 그림을 그려보는 코드를 소개합니다. import cv2 as cv def draw_ball_location(img_color, locations): for i in range(len(locations)-1): if locations[0] is None or locations[1] is None: continue cv.line(img_color, tuple(locations[i]), tuple(locations[i+1]), (0, 255, 255), 3) return img_color cap = cv.VideoCapture(0) list_ball_location = [] history_ball_locations = [] isDraw ..

반응형
image