Hello,
I have standard raspberry PI camera without any manual zooming options but i need to get only part of what camera really see for my code…
is it possible to digitaly zoom camera on jetson nano ? or somehow crop only the middle of video stream without any postprocessing in my code - is there any parameter to the command “nvarguscamerasrc” that I can use ? like define that I need only area starting from poin 150,150 to point 800,600 or anything similar ?
currently i have:
nvarguscamerasrc ! video/x-raw(memory:NVMM), width=(int)1280, height=(int)720, format=(string)NV12, framerate=(fraction)20/1 ! nvvidconv flip-method=0! video/x-raw, width=(int)1280, height=(int)720, format=(string)BGRx ! videoconvert ! appsink
Thanks!