3

我有下一个用于 JPEG 图像解压缩的标准代码,它基于libjpeg.

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立即裁剪图像?

这就是我可以实现它的方式:

  1. 忽略第一top - 1行;
  2. 对于接下来的每一bottom - top行:1)将扫描线读取到临时缓冲区;2) 将列范围内的像素从[left, right)临时缓冲区复制到目标缓冲区。
  3. 中止减压。

但是这段代码是多余的。

4

1 回答 1

2

性能方面,特别是如果原始图像是高分辨率并且您需要相对较小的一部分,您可能应该首先无损裁剪/修剪图像而不解压缩它,这可以在 16x16 像素(8x8?)粒度和快速,然后解压缩跳过边缘的几行和像素。您可能还喜欢这种方法,以减少用于操作的内存量。

如果你只是剪裁一点,那么开始完全减压的最初计划可能是最好的。这里几乎没有冗余。

于 2012-10-03T17:10:20.260 回答