| 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 Enumeration BorderTypes
public enum class BorderTypes
Members
| Member name | Value | Description |
---|
| Constant | 0 |
Border is filled with the fixed value, passed as last parameter of the function.
`iiiiii|abcdefgh|iiiiiii` with some specified `i`
|
| Replicate | 1 |
The pixels from the top and bottom rows, the left-most and right-most columns are replicated to fill the border.
`aaaaaa|abcdefgh|hhhhhhh`
|
| Reflect | 2 |
`fedcba|abcdefgh|hgfedcb`
|
| Wrap | 3 |
`cdefgh|abcdefgh|abcdefg`
|
| Reflect101 | 4 |
`gfedcb|abcdefgh|gfedcba`
|
| Transparent | 5 |
`uvwxyz|absdefgh|ijklmno`
|
| Default | 4 |
same as BORDER_REFLECT_101
|
| Isolated | 16 |
do not look outside of ROI
|
See Also