-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresolutiontest.py
More file actions
48 lines (37 loc) · 1.11 KB
/
resolutiontest.py
File metadata and controls
48 lines (37 loc) · 1.11 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
import numpy as np
import cv2
cap = cv2.VideoCapture(0)
# 3 and 4 are built-in parameters in opencv just changing those
def make_1080p():
cap.set(3, 1920)
cap.set(4, 1080)
def make_720p():
cap.set(3, 1280)
cap.set(4, 720)
def make_480p():
cap.set(3, 640)
cap.set(4, 480)
def change_res(width, height):
cap.set(3, width)
cap.set(4, height)
# make_720p()
# change_res(200, 200)
def rescale_frame(frame, percent = 75):
scale_percent = 75
width = int(frame.shape[1] * scale_percent / 100)
height = int(frame.shape[0] * scale_percent / 100)
dim = (width, height)
return cv2.resize(frame, dim, interpolation = cv2.INTER_AREA)
while(True):
#capture frame-by-frame
ret, frame = cap.read()
frame = rescale_frame(frame, percent = 30)
#Display the resulting frame
cv2.imshow('frame', frame)
frame2 = rescale_frame(frame, percent = 140)
cv2.imshow('frame2', frame2)
if cv2.waitKey(20) & 0xFF == ord('q'):
break
#When everything is done, release the capture
cap.release()
cv2.destroyAllWindows()