HI.
I have OAK D Lite.
I am developing my project using Depthai C++ library
I managed to record the data in 1920x1440 jpeg format .
I set "ColorCamera" node in "THE_12_MP" resolution connect it to the "ImageManip" node via "isp"
I configure ImageManip (manip) as follw
manip->initialConfig.setResize(1920, 1440);
manip->initialConfig.setFrameType(dai::ImgFrame::Type::NV12);
manip->setMaxOutputFrameSize(1920*1440*3);
Then I link "ImageManip out" node to a "VideoEncoder input"
The result is a jpeg image with the disired Fild Of View (FOV).
I get the "same" FOV if I set the "ImageManip" node using 4032x3040 resolution
but... if I try to output a 640x480 image I get a cropped image with reduced FOV.
Can I get the same FOV with 640x480 resolution?
Why was I able to have the same FOV with the two previous resolutions?
Thank you.
Antonio.