Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4834

Camera board • Re: Blurry Images While Camera In Motion

$
0
0
Try short exposure times

Code:

from picamera2 import Picamera2picam2 = Picamera2()picam2.configure(picam2.create_still_configuration())def do_capture(exp_time):    picam2.set_controls({"ExposureTime": exp_time, "AnalogueGain": 1.0})    picam2.start()    array = picam2.capture_array()    picam2.stop()    return arrayshort = do_capture(1000)medium = do_capture(5000)long = do_capture(9000) 

Statistics: Posted by gordon77 — Sun Dec 22, 2024 3:45 pm



Viewing all articles
Browse latest Browse all 4834

Trending Articles