Software Archive
Read-only legacy content
17060 Discussions

Manual setting for color exposure

satoshi_y_
Beginner
492 Views

Hi

I am setting exposure for F200 color camera to reduce blur by motion.

sts = device->SetColorAutoExposure(false);
pxcBool AutoExposureFlg = device->QueryColorAutoExposure();
sts = device->SetColorExposure(-7);
pxcI32 CurrentExposure=    device->QueryColorExposure();

I confirmed that auto exposure was off and the exposure value was set to minimum (-7), but the color image was almost white-out, it seems to grab with too much gain.

Can anyone tell me how to control exposure time of color camera in F200 to get more clear image for fast-moving-target?

0 Kudos
2 Replies
Xusheng_L_Intel
Employee
492 Views

You cannot set whatever value you want to set. You need use QueryColorExposureInfo to get property value range and other useful information and then find the validate exposure value. You can find details @https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/querycolorexposureinfo_device_pxccapture.html. Thanks!

0 Kudos
Anthony_M_1
Beginner
492 Views

Thank you David for the link.

0 Kudos
Reply