回答編集履歴
1
コード修正
test
CHANGED
@@ -18,9 +18,9 @@
|
|
18
18
|
|
19
19
|
# 保存する動画サイズ
|
20
20
|
|
21
|
-
w = int(640
|
21
|
+
w = int(640) # 32の倍数
|
22
22
|
|
23
|
-
h = int(480
|
23
|
+
h = int(480) # 16の倍数
|
24
24
|
|
25
25
|
|
26
26
|
|
@@ -29,6 +29,12 @@
|
|
29
29
|
if not cap.isOpened():
|
30
30
|
|
31
31
|
raise IOError('Cannot open camera')
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
cap.set(3, w)
|
36
|
+
|
37
|
+
cap.set(4, h)
|
32
38
|
|
33
39
|
|
34
40
|
|
@@ -45,8 +51,6 @@
|
|
45
51
|
while True:
|
46
52
|
|
47
53
|
ret, frame = cap.read()
|
48
|
-
|
49
|
-
frame = cv2.resize(frame, (w, h), interpolation=cv2.INTER_AREA)
|
50
54
|
|
51
55
|
cv2.imshow('camera', frame)
|
52
56
|
|