Overload List
Name | Description |
---|---|
cvFlip(IntPtr, IntPtr, FLIP) |
Flips the array in one of different 3 ways (row and column indices are 0-based)
|
cvFlip(IntPtr, IntPtr, Int32) |
Flips the array in one of different 3 ways (row and column indices are 0-based):
dst(i,j)=src(rows(src)-i-1,j) if flip_mode = 0
dst(i,j)=src(i,cols(src1)-j-1) if flip_mode > 0
dst(i,j)=src(rows(src)-i-1,cols(src)-j-1) if flip_mode < 0
|