Skip to content
This repository has been archived by the owner on Apr 8, 2020. It is now read-only.

A first step towards an image registration package written in Julia.

License

Notifications You must be signed in to change notification settings

FraunhoferMEVIS/DeformableRegistration.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DeformableRegistration.jl

Build Status

This is a first step towards an image registration package written in Julia. The current goal is to build a platform to experiment with registration and explore algorithms. Basic registration is possible though and pull-requests adding features or fixing bugs are explicitly welcome. :)

Some of the code is inspired by the FAIR software package by Jan Modersitzki.

Getting started

Pkg.clone("https://github.com/lruthotto/KrylovMethods.jl")
Pkg.clone("https://github.com/johanneslotz/DeformableRegistration.jl")

To get started, compute a first registration based on the example code in

test/{Parametric,Nonparametric}Registration.jl

Features

  • Image Registration in 2D
  • Disance Measures: SSD, NGF
  • Regularizer: Diffusive, Curvature
  • Optimization: Gauss-Newton/Armijo
  • some unit and integration tests

Module organization

DeformableRegistration is organized in modules:

  • .Distance: Sum of Squared Differences (SSD), masked SSD, Normalized Gradient Fields (NGF)

  • .Regularizer: Functions to regularize the deformation field. So far, curvature and a diffusive regularization have been implemented (both matrix-based).

  • .Optimization: Gauss-Newton optimization with Armijo line search.

  • .ImageProcessing: Different functions to create and load images and handle their properties.

  • .Interpolation: Linear interpolation, a specialized implementation and a generic based on the Interpolations package.

  • .Transformation: Convenience functions to create and transform cell-centered grids.

  • .Visualization

About

A first step towards an image registration package written in Julia.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Julia 100.0%