快速解压算法jpeg 图像的重新缩放
在 uCLinux 2.4 中开发一个在 IP 摄像机中运行的应用程序。需要从视频流(MJPEG、MPEG4 或 h.264)中抓取图像,将其解压缩为原始格式并将其重新缩放为较小的尺寸。需要在 10-15 FPS 下执行此操作,但处理能力非常有限,因此必须以非常优化的方式执行此操作。假设解压缩和重新缩放应该在同一个动作中完成。
关于在哪里寻找解决方案或算法有什么想法吗?或者有专家可以帮助我们吗?
Working on an application in uCLinux 2.4 to run in an IP camera. Need to grab an image from the videostream (MJPEG, MPEG4 or h.264), decompress it to raw format and rescale it to smaller size. Need to do this at 10-15 FPS but the processing capacity is quite limited so must do this in a very optimized way. Assume that the decompression and rescaling should be done in the same move.
Any ideas on where to look for solutions or algorithms? Or an expert that can help us out..?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Guido Vollbeding 的工作可能有助于解决您的问题 (http://jpegclub.org/djpeg/)。该算法仅解码流而不是整个图片。
The work of Guido Vollbeding may help to solve your problem (http://jpegclub.org/djpeg/). The algorithm does decode only the stream and not the whole picture.