borderType
Posted elong1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了borderType相关的知识,希望对你有一定的参考价值。
决定在图像发生几何变换或者滤波操作(卷积)时边沿像素的处理方式
base.hpp (opencv4中)
enum BorderTypes
BORDER_CONSTANT = 0, //!< `iiiiii|abcdefgh|iiiiiii` with some specified `i`
BORDER_REPLICATE = 1, //!< `aaaaaa|abcdefgh|hhhhhhh`
BORDER_REFLECT = 2, //!< `fedcba|abcdefgh|hgfedcb`
BORDER_WRAP = 3, //!< `cdefgh|abcdefgh|abcdefg`
BORDER_REFLECT_101 = 4, //!< `gfedcb|abcdefgh|gfedcba`
BORDER_TRANSPARENT = 5, //!< `uvwxyz|abcdefgh|ijklmno`
BORDER_REFLECT101 = BORDER_REFLECT_101, //!< same as BORDER_REFLECT_101
BORDER_DEFAULT = BORDER_REFLECT_101, //!< same as BORDER_REFLECT_101
BORDER_ISOLATED = 16 //!< do not look outside of ROI
;
以上是关于borderType的主要内容,如果未能解决你的问题,请参考以下文章