-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaaaa.py
More file actions
35 lines (27 loc) · 794 Bytes
/
Copy pathaaaa.py
File metadata and controls
35 lines (27 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# importing libraries
import cv2
import numpy as np
# Create a VideoCapture object and read from input file
cap = cv2.VideoCapture(r'C:\Users\sivam\Downloads\a.mp4')
# Check if camera opened successfully
if (cap.isOpened()== False):
print("Error opening video file")
#dont read
# Read until video is completed
while(cap.isOpened()):
# Capture frame-by-frame
ret, frame = cap.read()
if ret == True:
# Display the resulting frame
cv2.imshow('Frame', frame)
# Press Q on keyboard to exit
if cv2.waitKey(25) & 0xFF == ord('q'):
break
# Break the loop
else:
break
# When everything done, release
# the video capture object
cap.release()
# Closes all the frames
cv2.destroyAllWindows()