raspicam
raspicam copied to clipboard
Official raspicam from AVA Research Group. Controlling the raspberry pi camera in C++. Moved from Sourceforge to here
I am using raspbery Pi 4 SoC with Ubuntu 20.10 64bit OS and trying to use raspberry Pi HD Camera. I am able to compile 'raspicam' and below example code...
still mode in camera V2.1 seems has a problem. when capturing starts after a while it can not grab any other frame
Hi, I just checked out the latest version on raspbian/rPi4. The included example works fine, but when I tried to compile the sample code given on http://www.uco.es/investiga/grupos/ava/node/40 1) sleep is...
Howdy, when I do ``` Camera.setWidth ( 192 ); Camera.setHeight ( 128 ); ``` I get a tiny part of the middle of the sensor, when I'd like the full...
From my tests it works as expected. The only information to verify is the max value of the shutterspeed can be potentially higher but requires more tests or new informations...
``` void RaspiCam_Still::setShutterSpeed(unsigned int ss) { _impl->setShutterSpeed(ss); } void RaspiCam_Still::setAWB_RB(float red_g, float blue_g) { _impl->setAWB_RB(red_g, blue_g); } ```
* Add definition for setting timestamp format * Modify data structure to contain timestamp info * Add interface to retrieve timestamp
In `Private_Impl` class defined function `setVideoStabilization`, and this function param setted to `State.videoStabilisation`. But, in `Private_Impl` not defined `getVideoStabilization`. If necessary, i can create a merge request with the necessary...
Hello, I'm using Camera V1.3 on Raspbrry Pi 4B, grab 1600x1200 CV_8UC3 18fps it's take about 80% CPU usage(single core I think), is 80% normal?