在 Python 中的 ITK 函数调用中,我应该为 ParameterType 值添加什么?

发布于 2024-10-20 05:01:30 字数 364 浏览 3 评论 0原文

我正在尝试使用 ITK Python 绑定来执行此操作:

mi_metric = itk.MutualInformationImageToImageMetric[itk.Image.F3, itk.Image.F3].New()
mi_metric.SetFixedImage(i1)
mi_metric.SetMovingImage(i2)
v = mi_metric.GetValue( ? )

GetValue 函数需要将 ParameterType 值传递给它,但我找不到有关如何传递的任何信息在 Python 绑定中构造这种类型的对象。有人知道我如何获得这两个图像之间的互信息值吗?

I'm trying to do this using the ITK Python bindings:

mi_metric = itk.MutualInformationImageToImageMetric[itk.Image.F3, itk.Image.F3].New()
mi_metric.SetFixedImage(i1)
mi_metric.SetMovingImage(i2)
v = mi_metric.GetValue( ? )

The GetValue function requires a ParameterType value to be passed to it, but I can't find any information about how to construct this type of object in the Python bindings. Anyone know how I can get the mutual information value between these two images?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爺獨霸怡葒院 2024-10-27 05:01:30

它似乎是一个 双精度数组,所以我假设您需要创建一个 double 类型的 itk.Array。

但此类旨在与优化器一起使用,而不是真正单独使用。因此,我通常会创建一个 Optimizer 并与之配合使用。

It appears to be an Array of double, so I'd assume that you need to create an itk.Array of type double.

But this class is meant to be used with an optimizer, and not really meant to be used alone. So, I'd normally create an Optimizer, and use it with that.

回眸一笑 2024-10-27 05:01:30

这种行为是为 ITK 定义良好的新应用程序库接口,称为 SimpleITK。

您可以在 www.simpleitk.org 上了解有关该界面及其功能的更多信息,或者从 github.com/SimpleITK 检索软件包

This behavior is very well defined new application libary interface for ITK called SimpleITK.

You can learn more about that interface, and it's capabilities at www.simpleitk.org or by retrieving the software package from github.com/SimpleITK

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文