Flips the array in one of different 3 ways (row and column indices are 0-based)

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvFlip(
	IntPtr src,
	IntPtr dst,
	FLIP flipType
)
Public Shared Sub cvFlip ( _
	src As IntPtr, _
	dst As IntPtr, _
	flipType As FLIP _
)
public:
static void cvFlip(
	IntPtr src, 
	IntPtr dst, 
	FLIP flipType
)

Parameters

src
IntPtr
Source array.
dst
IntPtr
Destination array.
flipType
FLIP
Specifies how to flip the array.

See Also