http://www.emgu.com
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
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
Visual Basic |
---|
Public Shared Sub cvFlip ( _
src As IntPtr, _
dst As IntPtr, _
flipMode As Integer _
) |
Visual C++ |
---|
public:
static void cvFlip(
IntPtr src,
IntPtr dst,
int flipMode
) |
Parameters
- src
- Type: System..::..IntPtr
Source array.
- dst
- Type: System..::..IntPtr
Destination array.
- flipMode
- Type: System..::..Int32
Specifies how to flip the array.
flip_mode = 0 means flipping around x-axis,
flip_mode > 0 (e.g. 1) means flipping around y-axis and
flip_mode < 0 (e.g. -1) means flipping around both axises.
See Also