본문 바로가기

찐s/Raspberry Pi

[RPi] Lab.04-2: piCamera

라즈베리파이 CSI 기반 카메라를 파이썬으로 제어한다.

 

[RPi]

[captureImage.py]

카메라에서 들어오는 영상을 캡처하여 JPG 파일로 저장한다. 

#####captureImage.py-------------------------#####
import picamera
import time

#####----------------------------------------##### 
camera = picamera.PiCamera()

camera.resolution = (400, 300)
camera.start_preview()
filename = input('File Name:')
time.sleep(1)
camera.stop_preview()
camera.capture(filename + '.jpg')

 

[Test Result]



[참조]

www.raspberrypi.org

 

'찐s > Raspberry Pi' 카테고리의 다른 글

[RPi] Lab.04-4: piCamera  (0) 2020.12.13
[RPi] Lab.04-3: piCamera  (0) 2020.12.12
[RPi] Lab.04-1: piCamera  (0) 2020.12.05
[RPi] Lab.03: UDP socket communication  (0) 2020.11.29