Skip to content

Commit

Permalink
ENH: Support additional pixel types in python wrapping for ShrinkImag…
Browse files Browse the repository at this point in the history
…eFilter.
  • Loading branch information
Leengit authored and dzenanz committed Aug 31, 2020
1 parent 26079ef commit 6b54a99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
@@ -1,8 +1,7 @@
itk_wrap_class("itk::BinShrinkImageFilter" POINTER)
itk_wrap_image_filter("${WRAP_ITK_RGB}" 2)
itk_wrap_image_filter("${WRAP_ITK_RGBA}" 2)
# VS9 (2008) does not correctly implicitly cast itk::Vector for operator +=
# itk_wrap_image_filter("${WRAP_ITK_VECTOR}" 2)
itk_wrap_image_filter("${WRAP_ITK_VECTOR}" 2)
itk_wrap_image_filter("${WRAP_ITK_SCALAR}" 2)
itk_wrap_image_filter("${WRAP_ITK_COMPLEX_REAL}" 2)
itk_end_wrap_class()
@@ -1,3 +1,7 @@
itk_wrap_class("itk::ShrinkImageFilter" POINTER)
itk_wrap_image_filter("${WRAP_ITK_RGB}" 2)
itk_wrap_image_filter("${WRAP_ITK_RGBA}" 2)
itk_wrap_image_filter("${WRAP_ITK_VECTOR}" 2)
itk_wrap_image_filter("${WRAP_ITK_SCALAR}" 2)
itk_wrap_image_filter("${WRAP_ITK_COMPLEX_REAL}" 2)
itk_end_wrap_class()

0 comments on commit 6b54a99

Please sign in to comment.