JPEG 提取 DCT 表
我正在使用 VS2008、MFC 和 WIC 开发图像查看器/编辑器,我想在图像处理后将 jpeg 重新压缩为尽可能接近原始图像(质量)。有谁知道如何提取亮度和色度表来设置
http://msdn.microsoft.com/en -us/library/gg430026%28v=vs.85%29.aspx
无需必须使用额外的大型库(如 libjpeg)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JPEG 标准规范涵盖了亮度和色度表的详细信息。
在 JPEG 术语中,这些表都称为“量化表”(DQT)。亮度量化表应用于“Y”通道,色度量化表应用于“Cb”和“Cr”通道。
此网站列出了大量相机制造商和 JPEG 创作软件的量化表。
要使用与另一个现有图像相同的量化表重新压缩图像:
The JPEG standard specification covers the details of the luminance and chrominance table.
In JPEG terminology, those tables are both referred to as "quantization table" (DQT). The luminance quantization table is applied on the "Y" channel and the chrominance quantization table is applied to "Cb" and "Cr" channels.
This website lists the quantization tables for a large number of camera manufacturers and JPEG authoring software.
To recompress an image using the same quantization tables as another existing image: