Skip to content

Commit

Permalink
ENH: Add support for long long pixel types to ImageDuplicator wrapping
Browse files Browse the repository at this point in the history
This is a follow-up to #2554, suggested in
#2578 (comment)
  • Loading branch information
dzenanz authored and thewtex committed Aug 11, 2021
1 parent 5378dae commit 278ac68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/Core/Common/wrapping/itkImageDuplicator.wrap
Expand Up @@ -10,7 +10,7 @@ endmacro()
itk_wrap_class("itk::ImageDuplicator" POINTER)
# Making sure that all types wrapped in PyBuffer are also wrapped for ImageDuplicator
# as this filter is used in the Python NumPy bridge.
UNIQUE(types "${WRAP_ITK_SCALAR};UC;D;US;UI;UL;SC;SS;SI;SL;F")
UNIQUE(types "${WRAP_ITK_SCALAR};UC;D;US;UI;UL;ULL;SC;SS;SI;SL;SLL;F")
foreach(t ${types})
string(REGEX MATCHALL "(V${t}|CV${t})" VectorTypes ${WRAP_ITK_VECTOR})
set(PixelType ${t})
Expand Down

0 comments on commit 278ac68

Please sign in to comment.