camera_test
This commit is contained in:
parent
3d346863ae
commit
9e990d1b81
|
@ -0,0 +1,10 @@
|
||||||
|
import numpy as np
|
||||||
|
import cv2
|
||||||
|
import os
|
||||||
|
|
||||||
|
cam = cv2.VideoCapture(0)
|
||||||
|
|
||||||
|
ret, frame = cam.read()
|
||||||
|
img = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
|
||||||
|
|
||||||
|
cv2.imwrite("cam_test_img.jpg",img)
|
|
@ -1,2 +1,3 @@
|
||||||
pyserial
|
pyserial
|
||||||
line_notify
|
line_notify
|
||||||
|
opencv-python
|
Loading…
Reference in New Issue