BSpline on multi-level registration

Hello! I’m trying to understand multi-level BSpline registration in ITK.

I’m using itk::BSplineTransform as my transformation model. I set the mesh size to be 8x8x8. If I run a 2-level registration with shrinking factor of 2x1. At the second level. the mesh size will be 4x4x4, or it’s still 8x8x8?

Thanks!
-Ray

Hello Ray,
There was some improvement to the multi-level registration with the v4 framework. As far as I know, you can now define specific behavior of transform at each level thank to transform adaptators (see the ImageRegistrationMethodv4 documentation). Since this is not always relevant, the default is to let the transform as it.
So if you want to modify the mesh size for each level, you have to set it explicitely.

HTH,

Tim

Thank you Tim!

So the default is the mesh size will stay the same at different levels?

-Ray

It seems yes.

Tim