Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
获取img每个像素单独发送
img直接发送
想要图片分开发送,但是发现像素值单独发送接受到的内容和直接发送图片有区别,请问是为什么?
如果涉及代码,需要报错提示与全部代码文本,请注意不要贴代码图片
我就想问图片直接发送和获取每个像素值单独发送有什么区别?
对于RGB图像,img是一个RGB565格式存储,而不是RGB888.
所以uart.write(img)发送的是RGB565的格式。
而get_pixel得到的是RGB888