gpt4 book ai didi

c# - 在 C# 中保存 PNG 图像时丢失像素深度

转载 作者:行者123 更新时间:2023-11-30 15:15:52 26 4
gpt4 key购买 nike

我正在创建一个 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)

最佳答案

documentation 之后cv2.imread(filename, flags),你可以看到有一个可选的标志IMREAD_ANYDEPTH

国旗documentation描述 IMREAD_ANYDEPTH 如下:

If set, return 16-bit/32-bit image when the input has the corresponding depth, otherwise convert it to 8-bit.

除非您另有说明,否则 imread(..) 会将图像转换为 8 位深度。

我希望以下内容能够加载 16 位深度的图像。

img = cv2.imread(image_path, cv2.IMREAD_ANYDEPTH)

关于c# - 在 C# 中保存 PNG 图像时丢失像素深度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51159067/

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