Page 1 of 1

Vertical Stripe when at 1080 resolution

Posted: Thu Jun 11, 2020 4:50 pm
by bensailor
Hi has anyone seen this vertical stripe issue before. I am using waveshare I camera modules and at 1920x1080 resolution. If i reduce resolution to 720 I dont see the issue
Any ideas whats causing this?

Re: Vertical Stripe when at 1080 resolution

Posted: Thu Jun 11, 2020 7:53 pm
by Realizator
Hi bensailor!
RPis GPU has some specific resolution requirements, and they became more important in a stereoscopic mode and with access over Python or C code.
To avoid forwarding you to the bug PiCamera documentation, let me say a one brief idea: horizontal resolution should be multiple of 32, and vertical to 16.
In your case:
1920/32 = 60 - Ok
1080/16 = 67.5 - not Ok
Try to use 1088 instead of 1080.