Optimization-based Registration#

When trying to find the transformation \(T\) such that \(M \circ T\) optimally matches \(F\) for moving and fixed images \(M\) and \(F\), we are required to define what the optimal match is. For feature-based approaches this would correspond to aligning matching features, but in order to phrase this as an optimization problem, we can define some distance ‘metric’ between two images, which we then can minimize. Using this metric \(L\) and the parameters \(\theta\) defining the transformation \(T_{\theta}\), we can rephrase the task as

\[min_{\theta} L(M\circ T_{theta}, F)\]

In this form, we can just use an optimizer to find the optimal values of \(\theta\). This is the approach used by SimpleITK or Kornia.

Resources#