wrap_itkbinarythresholdimagefilter.cmake
来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· CMAKE 代码 · 共 15 行
CMAKE
15 行
WRAP_CLASS("itk::BinaryThresholdImageFilter" POINTER_WITH_SUPERCLASS)
# For all the selected scalar types:
FOREACH(type ${WRAP_ITK_SCALAR})
# Wrap from that type to itself
# And wrap from that type to all "smaller" types that are selected.
# The SMALLER_THAN lists are defined in WrapBasicTypes.cmake. If the list
# is empty/nonexistant (e.g. in the case of uchar, then WRAP_IMAGE_FILTER_COMBINATIONS
# will just ignore that.
UNIQUE(st "${SMALLER_THAN_${type}};UC;${type}")
WRAP_IMAGE_FILTER_COMBINATIONS("${type}" "${st}")
ENDFOREACH(type)
END_WRAP_CLASS()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?