Coder Social home page Coder Social logo

Comments (3)

zivy avatar zivy commented on September 13, 2024

Hello Subhajit,

Registration is cast as an optimization task, with some subtleties that differ from standard optimization:

a. Most of the time the function will not be convex, as you pointed out.
b. Ideally the global optimum of the optimized function will coincide with the correct transformation parameters.
c. For many similarity measures (optimized functions) 'b' is not satisfied and the correct transformation parameters correspond to a local optimum. This makes the goal of registration different from the goal of standard optimization.

Given the above observations, registration robustness and accuracy are highly dependent on the initialization. Even more than you pointed to, as your initial parameter values need to be close to the correct local optimum.

Two common strategies for initialization:

  1. Center or guesstimate based on prior knowledge a reasonable alignment for both volumes (t = CenteredTransformInitializer) get the parameter values for this transformation (t.GetParameters), perturbe them within some known bounds (numpy.random + t.SetParameters) and run the registration multiple times. You will need to analyze the results to select the solution.

  2. Use the Exhaustive optimizer in a bounded region in parameter space to generate a sampling of the similarity measure in the region of interest and then start the registration from the k>=1 best locations. If you are familiar with evolutionary algorithm optimization terminology then the first step is similar to exploration and the second to exploitation.

Hopefully this answered your question.

As you also mentioned the different components of registration and their settings, this falls under the category of meta-optimization and is a different story. This paper may be of interest to you.

For further information please consult the registration literature.
regards
Ziv

from simpleitk-notebooks.

subhajitchatu avatar subhajitchatu commented on September 13, 2024

Thanks @zivy for your valuable feedbacks. Is there any function in SimpleITK for evolutionary algorithm optimization? Because ITK has support for this one plus one evolutionary multimodal algorithm with Mutual information I guess. How can I use this in python platform?

Thanks

from simpleitk-notebooks.

zivy avatar zivy commented on September 13, 2024

The 1+1 optimizer is also part of the registration framework in SimpleITK. The ImageRegistrationMethod class has a SetOptimizerAsOnePlusOneEvolutionary method. The meaning of the parameter values are described in the ITK documentation.

from simpleitk-notebooks.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.