-
-
Notifications
You must be signed in to change notification settings - Fork 56.5k
cv2.VideoCapture segfaults #22126
Copy link
Copy link
Closed
Milestone
Description
OpenCV 4.6, Centos7
This file: cv2-crash.zip
Testcase:
# pip3 install opencv-contrib-python-headless
import cv2
cap = cv2.VideoCapture('cv2-crash.mkv')
while True:
ret, frame = cap.read()
if not ret:
break
cap_time = cap.get(cv2.CAP_PROP_POS_MSEC)
print( cap_time )
cap.release()
Console:
[...]
163992.0
Core Dump (Segmentation fault)
Reactions are currently unavailable