Let's say we have an image of w, h = (3280, 2464). If I use a zoom = (0.25, 0.25, 0.5, 0.5) I expect to capture images where the center part matches with the center of the full image (like a x2 zoom). And the result is correct.
Code: Select all
raspistill -w 1640 -h 1232 --roi "0.25, 0.25, 0.5, 0.5" -o 'image.jpg'
Code: Select all
raspistill -w 1640 -h 2464 --roi "0.5, 0, 0.5, 1" -o 'image.jpg'