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?

link|improve this question

75% accept rate
feedback

2 Answers

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.