我正在创建一个16位灰度图像,并使用C#将其另存为PNG。当我使用GIMP或OpenCV加载图像时,图像以8位而不是16位的精度显示。您知道我的代码有什么问题吗?
1)这是用于创建PNG的代码
public static void Create16BitGrayscaleImage(int imageWidthInPixels, int imageHeightInPixels, ushort[,] colours,
string imageFilePath)
{
// Multiplying by 2 because it has two bytes per pixel
ushort[] pixelData = new ushort[imageWidthInPixels * imageHeightInPixels * 2];
for (int y = 0; y < imageHeightInPixels; ++y)
{
for (int x = 0; x < imageWidthInPixels; ++x)
{
int index = y * imageWidthInPixels + x;
pixelData[index] = colours[x, y];
}
}
BitmapSource bmpSource = BitmapSource.Create(imageWidthInPixels, imageHeightInPixels, 86, 86,
PixelFormats.Gray16, null, pixelData, imageWidthInPixels * 2);
using (Stream str = new FileStream(imageFilePath, FileMode.Create))
{
PngBitmapEncoder enc = new PngBitmapEncoder();
enc.Frames.Add(BitmapFrame.Create(bmpSource));
enc.Save(str);
}
}
2)这是读取图像属性的Python代码:
import cv2
img = cv2.imread(image_path)
答案 0 :(得分:4)
在cv2.imread(filename, flags)
的{{3}}之后,您可以看到IMREAD_ANYDEPTH
的可选标记。
标记documentation描述IMREAD_ANYDEPTH
如下:
如果设置,则当输入具有相应的深度时返回16位/ 32位图像,否则将其转换为8位。
这表明imread(..)
会将图像转换为8位深度,除非您另外指定。
我希望以下内容以16位深度加载图像。
img = cv2.imread(image_path, cv2.IMREAD_ANYDEPTH)