Hi All,
I can use the command “nvgstcapture-1.0 --prev-res=4 --sensor-mode=0” to get video stream. And from high light scene to low light scene, it firstly to add exposure time to max value, then add gain value to max value, finally, it slow the frame-rate, it looks like the sensor driver control mode.
static const u32 ctrl_cid_list = {
TEGRA_CAMERA_CID_EXPOSURE,
TEGRA_CAMERA_CID_GAIN,
TEGRA_CAMERA_CID_FRAME_RATE,
TEGRA_CAMERA_CID_HDR_EN,
TEGRA_CAMERA_CID_SENSOR_MODE_ID,
};
But, when I use argus to get video and to post-process. It firstly add exposure time to max, then it will slow frame-rate and add gain at the same time.
So, my question is :
- how to set argus to like nvgstcapture-1.0 for AE route?
- Are there any way to set a fix frame-rate, like 30fps/seconds or 10fps/seconds?