カメラで静止画像 OpenCV Python

カメラで静止画像 OpenCV Python
環境(Python3, Lubuntu, PC)
コード(Python)
import cv2
def camera(file):
cam=cv2.VideoCapture(0) # device
ret,frame=cam.read()
cv2.imwrite(file,frame) # filename,image,quality for jpeg
cam.release()
camera(‘test.jpg’)