Skip to content

Commit

Permalink
ENH: Add CompositeTransform to DataObjectDecorator wrapping
Browse files Browse the repository at this point in the history
Trying to use DataObjectDecorator<CompositeTransform<double, 3>> in class interface leads to wrapping warnings:

itkANTSRegistration: warning(4): ITK type not wrapped, or currently not known: itk::DataObjectDecorator< itk::CompositeTransform< double, 2 > >
itkANTSRegistration: warning(4): ITK type not wrapped, or currently not known: itk::DataObjectDecorator< itk::CompositeTransform< double, 3 > >
  • Loading branch information
dzenanz committed Jan 16, 2024
1 parent 0bdb5b9 commit 5d14550
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ itk_wrap_include("itkMesh.h")

itk_wrap_class("itk::DataObjectDecorator" POINTER)
foreach(d ${ITK_WRAP_DIMS})
itk_wrap_template("CT${ITKM_D}${d}" "itk::CompositeTransform< ${ITKT_D}, ${d} >")
itk_wrap_template("DFT${ITKM_D}${d}" "itk::DisplacementFieldTransform< ${ITKT_D}, ${d} >")
itk_wrap_template("BSOUDFT${ITKM_D}${d}" "itk::BSplineSmoothingOnUpdateDisplacementFieldTransform< ${ITKT_D}, ${d} >")
# necessary for TimeVaryingVelocityFieldImageRegistrationMethodv4
Expand Down

0 comments on commit 5d14550

Please sign in to comment.