http://www.emgu.com
The type for CopyMakeBorder function
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax Public Enumeration BorderType
public enum class BorderType
Members
| Member name | Value | Description |
---|
| NegativeOne | -1 |
Used by some cuda methods, will pass the value -1 to the function
|
| Constant | 0 |
Border is filled with the fixed value, passed as last parameter of the function
|
| Replicate | 1 |
The pixels from the top and bottom rows, the left-most and right-most columns are replicated to fill the border
|
| Reflect | 2 |
Reflect
|
| Wrap | 3 |
Wrap
|
| Reflect101 | 4 |
Reflect 101
|
| Transparent | 5 |
Transparent
|
| Default | 4 |
The default border interpolation type.
|
| Isolated | 16 |
do not look outside of ROI
|
See Also