Skip to content

Commit 70d67d2

Browse files
committedJul 28, 2017
save pic
1 parent 1e587c8 commit 70d67d2

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed
 

‎ch05-视频/VideoCaptureOnePicture.py

+18-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,26 @@
1010

1111
import numpy as np
1212
import cv2
13+
import string, random
14+
15+
16+
def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
17+
return ''.join(random.choice(chars) for _ in range(size))
18+
1319

1420
cap = cv2.VideoCapture(0)
1521

16-
if cap.isOpened():
22+
while cap.isOpened():
1723
ret, frame = cap.read()
18-
print('frame.shape:',frame.shape)#(720, 1280, 3)
24+
print('frame.shape:', frame.shape) # (720, 1280, 3)
25+
26+
cv2.imshow('frame',frame)
27+
28+
key = cv2.waitKey(delay=1)
29+
if key == ord("q"):
30+
break
31+
elif key == ord("s"):
32+
cv2.imwrite(id_generator() + '.jpg', frame)
1933

20-
cv2.imwrite('from_camera1.jpg',frame)
34+
cap.release()
35+
cv2.destroyAllWindows()

‎ch200_Extra_modules/aruco/Camera Calibration using ChArUco and Python/aruco_test1.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
print(cal)
5959
retval, cameraMatrix, distCoeffs, rvecs, tvecs = cal#TODO 然后怎么办?
6060
#TODO saveCameraParams
61-
np.savez('calib.npz',mtx=cameraMatrix,dist=distCoeffs,rvecs=rvecs,tvecs=tvecs)
61+
np.savez('calib.npz',mtx=cameraMatrix,dist=distCoeffs,rvecs=rvecs,tvecs=tvecs)#保存下载,下次不用校准了。
6262
# np.savez(outfile, x=x, y=y)
6363
except:
6464
cap.release()

0 commit comments

Comments
 (0)