从 byte[] 而不是文件加载图像 OpenCV (JavaCV)
我有来自套接字连接的图像数据作为字节[]。我见过的所有使用 cvLoadImage()
的示例都传递了一个文件名。我是否必须将每个图像保存到文件并重新打开它才能进行处理?对于需要发生的事情来说,这似乎有很多开销,是否可以从 byte[] 数据加载图像?
I have image data coming in from over a socket connection as a byte[]. All examples I have seen using cvLoadImage()
is passed a file name. Do I have to save every image to file and re-open it to do the processing? This seems to have a lot of overhead for what needs to happen, is it possible to load the image from the byte[] data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设数据以某种标准格式(如 JPG 或 PNG)编码,并且假设您使用 JavaCV,对于字节数组 b,这也适用:
IplImage image = cvDecodeImage(cvMat(1, b.length, CV_8UC1,新的字节指针(b)));
Assuming the data is encoded in some standard format like JPG or PNG, and assuming you are using JavaCV, for a byte array b, this works as well:
IplImage image = cvDecodeImage(cvMat(1, b.length, CV_8UC1, new BytePointer(b)));
最后的简单解决方案,您可以使用以下方法从 BufferedImage 创建图像,这解决了我的问题:
Simple solution in the end, you can use the following method to create an Image from a BufferedImage which solved my problem: