Hi,
I have a team of students who would like to use the PiCamera as a luminosity sensor for Mission Space Lab. Does anyone have any resources on how to do this? (They're investigating light pollution.)
Thanks,
Gail

Code: Select all
/usr/bin/mjpg_streamer -o output_http.so -w ./www -i input_raspicam.so -x 1920 -y 1440 -fps 3
Code: Select all
wget -q http://<ip-address>:8080/?action=snapshot -O - | convert - -colorspace Gray -format \"%[fx:quantumrange*image.mean]\" info:
Davespice wrote: ↑Wed Dec 06, 2017 8:43 amIf you're happy with decoding some binary you could take pictures in raw YUV format, where Y is luminance.
More info here (including how the binary data is represented): http://picamera.readthedocs.io/en/relea ... yuv-format