Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我检索了一个 rtp H264 流。我这样处理: - 获取 Udp 数据包 - 删除 rtp 标头并解析数据包以获取图像 - 将图像记录/附加到文件中 - 使用 opencv 打开此文件(bool VideoCapture::open(const string& filename))
一切正常!
现在我想跳过文件步骤中的记录,直接将图像从 udp 进程发送到 opencv。但我不知道如何使用输入缓冲区初始化 opencv。它只接受 const 字符串和文件名。
有人可以帮我吗?
谢谢
如果它是单个图像,你在内存中,imdecode应该可以解决问题