import cv2
cap = cv2.VideoCapture("Video1.mp4")
while(True):
ret,frame = cap.read()
cv2.imshow('result',frame)
if cv2.waitKey(1) & 0xFF== ord('q'):
break
cap.release()
cv2.destroyAllWindows()
Traceback (most recent call last):
File "C:\Users\UserPRO\Desktop\2.py", line 6, in <module>
cv2.imshow('result',frame)
cv2.error: OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\highgui\src\window.cpp:376: error: (-215:Assertion failed) size.width>0 && size.height>0 in function 'cv::imshow'
โดยที่ Video1 อยู่ใน folder เดียวกับงานที่ทำอยู่
Python 3.7.5
opencv 4.1.2
เปิด mp4 จาก opencv,python ไม่ได้ครับ
cap = cv2.VideoCapture("Video1.mp4")
while(True):
ret,frame = cap.read()
cv2.imshow('result',frame)
if cv2.waitKey(1) & 0xFF== ord('q'):
break
cap.release()
cv2.destroyAllWindows()
Traceback (most recent call last):
File "C:\Users\UserPRO\Desktop\2.py", line 6, in <module>
cv2.imshow('result',frame)
cv2.error: OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\highgui\src\window.cpp:376: error: (-215:Assertion failed) size.width>0 && size.height>0 in function 'cv::imshow'
โดยที่ Video1 อยู่ใน folder เดียวกับงานที่ทำอยู่
Python 3.7.5
opencv 4.1.2