如何将 IplImage 转换为 char 数组
我想知道是否可能,如果可以,如何将 IplImage 转换为 C(或 C++)中的 char 数组。 谢谢
I wanted to know if it's possible, and if so, how to transform an IplImage to a char array in C (or C++).
thks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设声明:
img->imageData
将包含对齐的像素数据(按 BGR 顺序)Assuming a declaration:
img->imageData
will contain your aligned pixel data (in BGR order)