gpt4 book ai didi

c++ - libjpeg:如何获得正确的图像解压缩大小?

转载 作者:搜寻专家 更新时间:2023-10-31 01:13:08 29 4
gpt4 key购买 nike

我有这样一个常用的代码:

struct jpeg_decompress_struct cinfo;
jpeg_create_decompress(&cinfo);
jpeg_stdio_src(&cinfo, infile);
jpeg_read_header(&cinfo, TRUE);

cinfo.scale_num = ?;
cinfo.scale_denom = ?;

needed_width = cinfo.output_width;
needed_height = cinfo.output_height;

如何选取scale_numscale_denum 参数来将图像缩放到所需的大小。例如,我想将它缩小一倍。

如果我设置 scale_num = 1 , scale_denom = 2 .结果是:(1802 x 1237)到(258 x 194)

文档说:

Scale the image by the fraction scale_num/scale_denom.  Default is
1/1, or no scaling. Currently, the only supported scaling ratios
are 1/1, 1/2, 1/4, and 1/8.

但是当我设置这样的比例时,我得不到需要的结果。

所以问题是:如何设置scale_numscale_denom获得与所需的最大相似尺寸的图像。

最佳答案

您应该调用 jpeg_calc_output_dimensions(cinfo) 以获得正确的 output_width 和 output_height 值。

为了计算系数 scale_denom,我通常会这样做:

unsigned int intlog2(unsigned int val) {
int targetlevel = 0;
while (val >>= 1) ++targetlevel;
return targetlevel;
}

// ....
// for example,
const int width = 5184;
const int height = 3456;

unsigned int needed_width = 640;
unsigned int needed_height = 480;

unsigned int wdeg = intlog2(width / needed_width);
unsigned int hdeg = intlog2(height / needed_height);

unsigned int scale_den = std::min(1 << (std::min)(wdeg, hdeg), 8);

unsigned int result_width = width / scale_den;
unsigned int result_height = height / scale_den;

关于c++ - libjpeg:如何获得正确的图像解压缩大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12957543/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com