gpt4 book ai didi

c# - 将 Simpleitk 图像转换为位图。系统参数异常

转载 作者:行者123 更新时间:2023-11-30 17:40:08 31 4
gpt4 key购买 nike

我想使用 simpleitk 读取 dicom 图像,将其转换为位图,然后将结果显示在 pictureBox 中。但是当我尝试这样做时,会抛出一个 ArgumentException。我该如何解决这个问题?

这是我的代码:

OpenFileDialog dialog = new OpenFileDialog();
dialog.Title = "Open";
dialog.Filter = "DICOM Files (*.dcm;*.dic)|*.dcm;*.dic|All Files (*.*)|*.*";
dialog.ShowDialog();
if (dialog.FileName != "")
{
using (sitk.ImageFileReader reader = new sitk.ImageFileReader())
{
reader.SetFileName(dialog.FileName);
reader.SetOutputPixelType(sitk.PixelIDValueEnum.sitkFloat32);
sitk.Image image = reader.Execute();

var castedImage = sitk.SimpleITK.Cast(image,
sitk.PixelIDValueEnum.sitkFloat32);
var size = castedImage.GetSize();
int length = size.Aggregate(1, (current, i) => current * (int)i);
IntPtr buffer = castedImage.GetBufferAsFloat();

// Declare an array to hold the bytes of the bitmap.
byte[] rgbValues = new byte[length];

// Copy the RGB values into the array.
Marshal.Copy(buffer, rgbValues, 0, length);

Stream stream = new MemoryStream(rgbValues);

Bitmap newBitmap = new Bitmap(stream);

//I have tried in this way, but it generated ArgumentException too
//Bitmap newBitmap = new Bitmap((int)image.GetWidth(), (int)image.GetHeight(), (int)image.GetDepth(), PixelFormat.Format8bppIndexed, buffer);

Obraz.pic.Image = newBitmap;
}
}

最佳答案

感谢您的评论和尝试提供帮助。经过咨询和我自己在互联网上的搜索,我解决了这个问题。第一个问题是像素图像的表示不充分。我不得不将 Float32 更改为 UInt8 以提供八位像素。

var castedImage = sitk.SimpleITK.Cast(image2, sitk.PixelIDValueEnum.sitkUInt8);

然后我已经使用被注释掉的构造函数创建了一个位图,但是使用 (int)image.GetWidth() 而不是 (int)image.GetDepth()。

Bitmap newBitmap = new Bitmap((int)image.GetWidth(), (int)image.GetHeight(), (int)image.GetWidth(), PixelFormat.Format8bppIndexed, buffer);

不幸的是,新的问题出现了。本应为灰度的图像显示为奇怪的颜色。但我找到了解决方案here

ColorPalette pal = newBitmap.Palette;
for (int i = 0; i <= 255; i++)
{
// create greyscale color table
pal.Entries[i] = Color.FromArgb(i, i, i);
}
newBitmap.Palette = pal; // you need to re-set this property to force the new ColorPalette

关于c# - 将 Simpleitk 图像转换为位图。系统参数异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34622970/

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