Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Sep 10, 2021
2 parents 9f3a624 + 30cd5fa commit 3b1c297
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
@@ -1,5 +1,5 @@
itk_wrap_class("itk::BSplineInterpolationWeightFunction" POINTER)
foreach(d ${ITK_WRAP_IMAGE_DIMS})
itk_wrap_template("${ITKM_D}${d}${d}" "${ITKT_D},${d},${d}")
itk_wrap_template("${ITKM_D}${d}3" "${ITKT_D},${d},3")
endforeach()
itk_end_wrap_class()
8 changes: 6 additions & 2 deletions Modules/Core/Common/wrapping/itkFunctionBase.wrap
Expand Up @@ -27,8 +27,12 @@ itk_wrap_class("itk::FunctionBase" POINTER)
itk_wrap_template("${ITKM_PD${d}}RGBAD" "${ITKT_PD${d}},itk::RGBAPixel< double >")

# Required by BSplineInterpolationWeightFunction
itk_wrap_template("${ITKM_CID2}${ITKM_FAD9}" "${ITKT_CID2}, ${ITKT_FAD9}")
itk_wrap_template("${ITKM_CID3}${ITKM_FAD64}" "${ITKT_CID3}, ${ITKT_FAD64}")
# Wrapping for spline order 3, components = (SplineOrder + 1)^SpaceDimension
set(comp 1)
foreach(i RANGE 1 ${d})
math(EXPR comp "${comp}*4")
endforeach()
itk_wrap_template("${ITKM_CID${d}}${ITKM_FAD${comp}}" "${ITKT_CID${d}}, ${ITKT_FAD${comp}}")

endforeach()

Expand Down
14 changes: 9 additions & 5 deletions Wrapping/WrapITKTypes.cmake
Expand Up @@ -150,11 +150,15 @@ WRAP_TYPE("itk::FixedArray" "FA" "itkFixedArray.h")
endforeach()

# Wrap FixedArray for BSplineInterpolationWeightFunction:
ADD_TEMPLATE("${ITKM_D}9" "${ITKT_D},9")
ADD_TEMPLATE("${ITKM_D}16" "${ITKT_D},16")
ADD_TEMPLATE("${ITKM_UL}16" "${ITKT_UL},16")
ADD_TEMPLATE("${ITKM_D}64" "${ITKT_D},64")
ADD_TEMPLATE("${ITKM_UL}64" "${ITKT_UL},64")
foreach(d ${ITK_WRAP_IMAGE_DIMS})
# Wrapping for spline order 3, components = (SplineOrder + 1)^SpaceDimension
set(comp 1)
foreach(i RANGE 1 ${d})
math(EXPR comp "${comp}*4")
endforeach()
ADD_TEMPLATE("${ITKM_D}${comp}" "${ITKT_D},${comp}")
ADD_TEMPLATE("${ITKM_UL}${comp}" "${ITKT_UL},${comp}")
endforeach()
END_WRAP_TYPE()
set(itk_Wrap_FixedArray ${WRAPPER_TEMPLATES})

Expand Down

0 comments on commit 3b1c297

Please sign in to comment.