JPEG 提取 DCT 表

发布于 2024-11-08 07:47:16 字数 313 浏览 0 评论 0 原文

我正在使用 VS2008、MFC 和 WIC 开发图像查看器/编辑器,我想在图像处理后将 jpeg 重新压缩为尽可能接近原始图像(质量)。有谁知道如何提取亮度和色度表来设置
http://msdn.microsoft.com/en -us/library/gg430026%28v=vs.85%29.aspx 无需必须使用额外的大型库(如 libjpeg)?

I am developing an image viewer/editor using VS2008 ,MFC and WIC and I would like to recompress jpegs as closely (quality-wize) as possible to their original, after image processing. Does anyone know how to extract luminance and chrominance tables to set in
http://msdn.microsoft.com/en-us/library/gg430026%28v=vs.85%29.aspx
WITHOUT having to use an additional large library (like libjpeg)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫性小仙女 2024-11-15 07:47:16

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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文