Click or drag to resize

BorderTypes Enumeration

Type of the border to create around the copied source image rectangle

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public enum BorderTypes
Members
  Member nameValueDescription
Constant0 Border is filled with the fixed value, passed as last parameter of the function. `iiiiii|abcdefgh|iiiiiii` with some specified `i`
Replicate1 The pixels from the top and bottom rows, the left-most and right-most columns are replicated to fill the border. `aaaaaa|abcdefgh|hhhhhhh`
Reflect2 `fedcba|abcdefgh|hgfedcb`
Wrap3 `cdefgh|abcdefgh|abcdefg`
Reflect1014 `gfedcb|abcdefgh|gfedcba`
Transparent5 `uvwxyz|absdefgh|ijklmno`
Default4 same as BORDER_REFLECT_101
Isolated16 do not look outside of ROI
See Also