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?
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.