Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.2 KB

brainsresample.md

File metadata and controls

27 lines (19 loc) · 1.2 KB

Use cases

Most frequently used for these scenarios:

  • Change an image's resolution and spacing.
  • Apply a transformation to an image (using an ITK transform IO mechanisms)
  • Warping an image (using a vector image deformation field).

Interpolation types

  • NearestNeighbor: The value of the nearest voxel is copied into the new voxel
  • Linear: The average of the voxels in the input image occupying the new voxel volume is used
  • ResampleInPlace: Detailed information can be found here.
  • BSpline: Detailed information can be found here.
  • WindowedSinc: Detailed information can be found here.

Similar modules