初级会员

- 积分
- 100
- 金钱
- 100
- 注册时间
- 2019-8-13
- 在线时间
- 19 小时
|

楼主 |
发表于 2025-3-25 11:08:10
|
显示全部楼层
用的是F429的例程,480*800 RGB屏幕
uint8_t ov5640_outsize_set(uint16_t offx,uint16_t offy,uint16_t width,uint16_t height);
uint8_t ov5640_image_window_set(uint16_t offx,uint16_t offy,uint16_t width,uint16_t height);
这两个函数设置的窗口不符合预期
例如test.c中,调整预缩放窗口偏移,但是不改变输出窗口大小:
OV5640_OutSize_Set(4,0,lcddev.width,outputheight); 能够满屏幕显示
改为
OV5640_OutSize_Set(4,50,lcddev.width,outputheight); 屏幕会少掉90行输出,而不是拉伸图像
ov5640_outsize_set的行为也不可预测,经常花屏或者不工作
|
|