使用 JavaCV 通过套接字发送 IplImage
我想通过套接字发送用 JavaCV 和网络摄像头获取的 IplImages,但是,由于它们不可序列化,所以我很迷失。关于如何做有什么想法吗?
谢谢
I'd like to send IplImages acquired with JavaCV and a webcam through a socket, but, since they are not serializable, i'm quite lost. Any idea on how to do it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将图像保存到临时文件并通过套接字传输该文件。
如果您不想创建临时文件,可以从
IplImage.getByteBuffer()
获取带有像素数据的ByteBuffer
并编写自己的writeObject
&readObject
方法。Save your image to temporary file and transfer that file through your socket.
If you don't want to create temporary files, you can get
ByteBuffer
with pixel data fromIplImage.getByteBuffer()
and write your ownwriteObject
&readObject
methods.