Hello Everyone,
I need to enable night vision mode (something like, Black and White or Grey Mode) on detecting the night time or day time. We have separate peripheral which connected over I2C for detection of Night time or day Time.
But after detection i want to dynamically change between RGB or Black/White/Grey mode. Is there some ISP API available for same which I can take reference of.
So far, I am aware of following can be added,
gst-launch-1.0 nvarguscamerasrc sensor-id=0 ! ‘video/x-raw(memory:NVMM),width=(int)1920,height=(int)1080, format=(string)NV12,framerate=16/1’ ! nvvidconv ! ‘video/x-raw(memory:NVMM),width=(int)1920,height=(int)1080, format=(string)GRAY8’ ! …
But this above option requires the stopping the pipeline and starting it again which actually i want to avoid. Also want to avoid the unnecessary nvidconv as well.
Any Pointers or Help is appreciated in Advance.
Thanks and Regards.