OpenCV:如何填充具有每个像素的每种 RGB 颜色值的 RGB 图像?
那么,拥有 RGBRGBRGB 的缓冲区... w*3 的大小如何用这样的数据填充 OpenCV 图像?
So having buffer with RGBRGBRGB... size of w*3 how to fill OpenCV Image with such data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 循环缓冲区的元素在模板化方法中。
当然,您需要使用正确的类型初始化矩阵,并设置颜色格式,这是我上面没有做的。请在此处查看有关 OpenCV 矩阵对象的更多信息。
The easiest way is just to loop over the elements of the buffer using the at templated method.
Of course, you need to initialize your matrix with the correct type, and set the color format, which I didn't do above. See more about the OpenCV matrix object here.
IplImage有一个变量imageData。它只是一个缓冲区。因此,如果数组与 imageData 缓冲区具有相同的格式,您可以简单地复制数组。如果格式不同,那么您可以复制,但您需要正确填充 IplImage 的其他变量。
IplImage has a variable imageData. It is just a buffer. So you can simply copy your array if it have the same format as imageData buffer. If format differs then you can copy, but you will need to fill other variables of your IplImage properly.