我有下一个基于libjpeg
的JPEG图像解压缩标准代码。
jpeg_decompress_struct cinfo;
// ...Set error manager and data source...
jpeg_read_header(&cinfo, TRUE);
jpeg_start_decompress(&cinfo);
while (cinfo.output_scanline < cinfo.output_height) {
JSAMPLE* scanlines[1];
// ...Set target pointer for scanline...
jpeg_read_scanlines(&cinfo, scanlines, 1);
}
jpeg_destroy_decompress(&cinfo);
我想读取图像的一部分,用矩形裁剪:
// struct RECT {
// int left;
// int top;
// int right;
// int bottom;
// };
RECT cropRect; // Coordinates of the crop rectangle relative to the output image size
我应该在下面的代码中修改什么来告诉libjpeg
立即裁剪图像?
这是我实现它的方式:
top - 1
行; bottom - top
行:
1)将扫描线读取到临时缓冲区;
2)将列范围[left, right)
中的像素从临时缓冲区复制到目标缓冲区。但这段代码是多余的。
答案 0 :(得分:2)
性能方面,特别是如果原始图像是高分辨率并且您需要相对较小的一部分,您应该首先crop/trim the image losslessly without decompressing it,这可能是16x16像素(8x8?)的粒度和快速,并且然后解压缩跳过边缘的几行和像素。您可能也喜欢这种方法,以便为操作使用更少的内存。
如果你正在裁剪一下,那么开始全部解压缩的原始计划可能是最好的。这里几乎没有冗余。