Table of Contents

Enum BorderTypes

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

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

[SuppressMessage("Microsoft.Design", "CA1717: Only FlagsAttribute enums should have plural names")]
public enum BorderTypes

Fields

Constant = 0

Border is filled with the fixed value, passed as last parameter of the function. iiiiii|abcdefgh|iiiiiii with some specified i

Default = 4

same as BORDER_REFLECT_101

Isolated = 16

do not look outside of ROI

Reflect = 2

fedcba|abcdefgh|hgfedcb

Reflect101 = 4

gfedcb|abcdefgh|gfedcba

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

Transparent = 5

uvwxyz|absdefgh|ijklmno

Wrap = 3

cdefgh|abcdefgh|abcdefg

Remarks