waveform80 / picamera

A pure Python interface to the Raspberry Pi camera module
https://picamera.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
1.57k stars 355 forks source link

"zoom" in stereoscopic mode #555

Open realizator opened 5 years ago

realizator commented 5 years ago

I tried to use "zoom" (ex. "crop") in stereoscopic side-by-side mode, suggesting this option will be applied to captured stereoscopic image. My aim was to take left and right images from stereopair using GPU-accelerated crop. But in fact all settings implemented to both sensors, and after that final stereoscopic image is constructed by stitching this images. So instead of cropped left part of stereoscopic image I obtain stereoscopic image from two left parts of images captured by cameras. Is this behavior was originally planned, or was just not tested in stereoscopic mode?

6by9 commented 5 years ago

As intended. You have created a stereo pair of cameras. All operations will apply equally to both image processing paths. The results of those two paths are then combined into a single output frame.

realizator commented 5 years ago

Ok, thank you. This issue can be closed now.