English 中文(简体)
试图写入 16 位 PNG
原标题:Trying to write 16-bit PNG

I m capturing images from camera, and I have two function for saving 16-bit(!) image one in PNG and one in TIFF formats. Could you please explain why the PNG is a very noisy image? like this:

PNG 函数 :

 bool save_image_png(const char *file_name,const mono16bit& img)
{
    [...]
        /* write header */
        if (setjmp(png_jmpbuf(png_ptr)))
                abort_("[write_png_file] Error during writing header");

        png_set_IHDR(png_ptr, info_ptr, width, height,
                     bit_depth,PNG_COLOR_TYPE_GRAY , PNG_INTERLACE_NONE,
                     PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);

        png_write_info(png_ptr, info_ptr);



        /* write bytes */
        if (setjmp(png_jmpbuf(png_ptr)))
                abort_("[write_png_file] Error during writing bytes");

    row_pointers = (png_bytep*) malloc(sizeof(png_bytep) * height);

        for (y=0; y<height; y++)
            row_pointers[y] = (png_byte*) malloc(png_get_rowbytes(png_ptr,info_ptr));
     for (y = 0; y < height; y++)
     {
             row_pointers[y] = (png_bytep)img.getBuffer() + y * width*2;
     }



        png_write_image(png_ptr, row_pointers);


        /* end write */

  [...]           

}

TIFF 函数 :

 bool save_image(const char *fname,const mono16bit& img)
{
  [...]

  for(y=0; y<height; y++) {
    if((err=TIFFWriteScanline(tif,(tdata_t)(img.getBuffer()+width*y),y,0))==-1)
      break;
  }

  TIFFClose(tif);

  if(err==-1) {
    fprintf(stderr,"Error writing to %s file
",fname);
    return false;
  }
  return true;

//#endif //USE_LIBTIFF
}

谢谢!

问题回答

png_set_swap 没有任何作用。 您必须在图像的每个像素中实际翻转字节 。

如果您在 PC 上, 并且拥有 SSSE3 或更新, 一个很好的方法就是 指令, 使用 来制作一个有 < code\ mm_ setr_ epi8 的permute 矢量 。

如果您在ARM上并且拥有近地物体N, 请使用 vrev16q_u8 指令代替 vrev16q_u8 指令。

Perhaps you have a byte-order problem. Try adding:

png_set_swap(png_ptr);

在保存图像前保存图像





相关问题
Splitting a multipage TIFF image - With .NET and IronPython

I had a scanned multipage TIFF image and needed to split each page out into individual files. This is easy to do in by leveraging the .NET framework and C#, but since I did not have all the ...

How can Multi-image TIFF files be split with PHP?

I ve got a client who needs me to use PHP to split a TIFF image (which contains 2 or 3 images, sort of like an animated GIF) into its component images. Can ImageMagick or one of the other graphic ...

Convert TIFF to PostScript

I m writing .net code (Windows Forms Application) which reads a TIFF image (CMYK) and sends it to printer (using WritePrinter). Before I send it, I need to convert the TIFF image to PostScript. Could ...

Image.Save question (save CMYK image to CMYK image)

In Windows Forms Application, I m trying to open the image (CMYK tiff), add text, and then save back to CMYK tiff image, but when I opened the output image in Photoshop, it was RGB image (the colors ...

Load image into memory immediately

I need to open all frames from Tiff image in WPF into memory and then delete the source. And after that I eventually need to render that image (resized according to window size). My solution is quite ...

How do I store TIFF files in Oracle?

I have an ASP.NET application (vb.net codebehind) that has serious performance problems because of its storage of TIFF files in one server share. There are over a million .TIF files there now! The ...

热门标签