Opencv
-
동영상에서 움직이는 물체 지우기Opencv 2021. 4. 18. 01:15
움직이는 동영상 내에서 움직이는 물체를 간단하게 지우기 다음과 같은 cctv 영상이 있다고 할때 걸어다니는 사람들을 자연스럽게 지우고 싶다. 우선 동영상을 읽어서 각각의 프레임들을 저장 한다. def video2image(input_path): count = 0 list_dir = os.listdir(input_path) fname = list_dir[0] vidcap = cv2.VideoCapture(input_path + fname) # FPS you want fps = 30 # to get fps of video v_fps = vidcap.get(cv2.CAP_PROP_FPS) v_length = int(vidcap.get(cv2.CAP_PROP_FRAME_COUNT)) video_frame = [..