-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathitk-module.cmake
More file actions
28 lines (23 loc) · 899 Bytes
/
itk-module.cmake
File metadata and controls
28 lines (23 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
set(DOCUMENTATION "FixedPointInverseDisplacementField takes a displacement field as input and
computes the displacement field that is its inverse. If the input displacement
field was mapping coordinates from a space A into a space B, the output of
this filter will map coordinates from the space B into the space A.
To compute the inverse of the given Displacement field, the fixed point algorithm by
Mingli Chen, Weiguo Lu, Quan Chen, Knneth J. Ruchala and Gusavo H. Olivera
described in the paper
\"A simple fixed-point approach to invert a Displacement field\",
Medical Physics, vol. 35, issue 1, p. 81,
is applied.
author Marcel Lüthi, Computer Science Department, University of Basel
")
itk_module(FixedPointInverseDisplacementField
DEPENDS
ITKCommon
ITKImageGrid
ITKIOImageBase
TEST_DEPENDS
ITKTestKernel
EXCLUDE_FROM_DEFAULT
DESCRIPTION
"${DOCUMENTATION}"
)