본문 바로가기
라즈베리파이 실습

Camera TEST

by Channel_B2 2020. 11. 18.

import picamera

 

import time

gdsdergerhnfgnrfg rthrtntyjmtynghnghg

with picamera.PiCamera() as camera:

res=int(input('Resolution(1:320x240, 2:640x480, 3:1024x768)?'))

 

if res == 3:

camera.resolution=(1024, 768)

elif res ==2:

camera.resolution=(640, 480)

else:

camera.resolution=(320, 240)

 

filename = input('File Name?')

camera.start_preview()

 

time.sleep(1)

camera.stop_preview()

camera.capture(filename + ' .jpg')

CameraTest.py
0.00MB