-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STYLE: MIP filter python wrap file is changed
- Loading branch information
Mikhail Polkovnikov
committed
Mar 11, 2024
1 parent
e2f64b0
commit 357cb1f
Showing
2 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,30 @@ | ||
itk_wrap_class("rtk::MaximumIntensityProjectionImageFilter" POINTER) | ||
set(WRAPPER_AUTO_INCLUDE_HEADERS OFF) | ||
itk_wrap_named_class("rtk::Functor::InterpolationWeightMultiplication" "rtkInterpolationWeightMultiplication") | ||
foreach(t ${WRAP_ITK_REAL}) | ||
itk_wrap_template("I${ITKM_${t}}3I${ITKM_${t}}3SWM${ITKM_${t}}D${ITKM_${t}}" | ||
"itk::Image<${ITKT_${t}}, 3>, itk::Image< ${ITKT_${t}}, 3>") | ||
itk_wrap_template("${ITKM_${t}}${ITKM_${t}}" "${ITKT_${t}}, ${ITKT_${t}}") | ||
endforeach() | ||
itk_end_wrap_class() | ||
itk_wrap_named_class("rtk::Functor::MaximumIntensityAlongRay" "rtkMaximumIntensityAlongRay") | ||
foreach(t ${WRAP_ITK_REAL}) | ||
itk_wrap_template("${ITKM_${t}}${ITKM_${t}}" "${ITKT_${t}}, ${ITKT_${t}}") | ||
endforeach() | ||
itk_end_wrap_class() | ||
itk_wrap_named_class("rtk::Functor::MaximumIntensityProjectedValueAccumulation" "rtkMaximumIntensityProjectedValueAccumulation") | ||
foreach(t ${WRAP_ITK_REAL}) | ||
itk_wrap_template("${ITKM_${t}}${ITKM_${t}}" "${ITKT_${t}}, ${ITKT_${t}}") | ||
endforeach() | ||
itk_end_wrap_class() | ||
set(WRAPPER_AUTO_INCLUDE_HEADERS ON) | ||
|
||
itk_wrap_class("rtk::JosephForwardProjectionImageFilter" POINTER) | ||
foreach(t ${WRAP_ITK_REAL}) | ||
itk_wrap_template("I${ITKM_${t}}3I${ITKM_${t}}3FWMI${ITKM_${t}}3I${ITKM_${t}}3FVAI${ITKM_${t}}3I${ITKM_${t}}3FIAI${ITKM_${t}}3I${ITKM_${t}}3" | ||
"itk::Image<${ITKT_${t}}, 3>, itk::Image< ${ITKT_${t}}, 3>, rtk::Functor::InterpolationWeightMultiplication<${ITKT_${t}}, ${ITKT_${t}}>, rtk::Functor::MaximumIntensityProjectedValueAccumulation<${ITKT_${t}}, ${ITKT_${t}}>, rtk::Functor::MaximumIntensityAlongRay<${ITKT_${t}}, ${ITKT_${t}}>") | ||
endforeach() | ||
itk_end_wrap_class() | ||
|
||
itk_wrap_class("rtk::MaximumIntensityProjectionImageFilter" POINTER) | ||
foreach(t ${WRAP_ITK_REAL}) | ||
itk_wrap_template("I${ITKM_${t}}3I${ITKM_${t}}3" "itk::Image<${ITKT_${t}}, 3>, itk::Image<${ITKT_${t}}, 3>") | ||
endforeach() | ||
itk_end_wrap_class() |