How can I configure the Field of View of the logitech brio4k webcam through python and openCV? I already found this post: Setting Camera Parameters in OpenCV/Python . Unfortunately, FOV is not mentioned there. The brio4K webcam offers FOV of 65, 78 and 90°.
Asked
Active
Viewed 1,075 times
0

Christoph Rackwitz
- 11,317
- 4
- 27
- 36

michael
- 47
- 6
-
that's not configurable. FoV is implied by your choice of resolution. webcams have "modes", consisting of binning and cropping. you pick a mode, and that's that. opencv lets you pick by resolution+FPS+pixfmt, but that's it. -- in general, a camera sensor's full resolution image can be cropped and binned. that's how lower resolutions are achieved. cropping affects FoV. cropping need not maintain aspect ratio. different crops, for the same binning (or no binning), have identical "focal length" in pixels. only binning affects the focal length. -- FoV is affected by cropping, but not by binning. – Christoph Rackwitz Jun 02 '22 at 15:47
-
probe the device with ffmpeg/ffprobe. query the "modes". ffmpeg wiki has the magic spells. – Christoph Rackwitz Jun 02 '22 at 15:50