gpt4 book ai didi

c# - 不支持 8 位无符号整数 vector

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:43:45 29 4
gpt4 key购买 nike

我正在尝试使用 Simple-itk 管理的 dll 在 .bmp 图像上应用 CannyEdgeDetectionImageFilter。

这是我的代码:

itk.simple.Image image1= SimpleITK.ReadImage("Input.bmp");

ImageFileReader read = new ImageFileReader();
read.SetFileName("Input.bmp");
read.Execute();

CannyEdgeDetectionImageFilter canny = new CannyEdgeDetectionImageFilter();
itk.simple.Image image2= canny.Execute(image1);//I got below exception here.

ImageFileWriter write = new ImageFileWriter();
write.SetFileName("Output.bmp");
write.Execute(image2,"Output.bmp", true);

我在执行 CannyEdgeDetectionImageFilter 时遇到了这个异常。

sitk::ERROR: Pixel type: vector of 8-bit unsigned integer is not supported in 2D byclass itk::simple::CannyEdgeDetectionImageFilter

如何将这个不受支持的东西转换为 simpleitk 支持的东西?

这是对我的代码的一些补充。我试图将 8 位无符号整数的 vector 转换为受支持的 vector ,但在这里我没有这样做。

CastImageFilter cast = new CastImageFilter();
PixelIDValueEnum p= cast.GetOutputPixelType();
image1= SimpleITK.Cast(image1, p);//I got below exception here.

sitk::ERROR: Filter does not support casting from casting vector of 8-bit unsigned integer to 32-bit float

我还能做些什么来处理这段代码吗?

感谢任何帮助。

最佳答案

对于8-bit unsigned integer not supported in 2D byclass的错误,你可能需要在读图的时候换一种方式,比如:

image = sitk.ReadImage("input.jpg", sitk.sitkInt8)

现在 sitk.CurvatureFlowimgWhiteMatter = sitk.ConnectedThreshold 可以工作了。

希望对您有所帮助。

关于c# - 不支持 8 位无符号整数 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30118427/

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