reverses the order of the rows, columns or both in a matrix
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Mat Flip(
	FlipMode flipCode
)
Public Function Flip ( 
	flipCode As FlipMode
) As Mat
public:
Mat^ Flip(
	FlipMode flipCode
)
member Flip : 
        flipCode : FlipMode -> Mat 
Parameters
- flipCode
- Type: OpenCvSharpFlipMode
 Specifies how to flip the array: 
            0 means flipping around the x-axis, positive (e.g., 1) means flipping around y-axis, 
            and negative (e.g., -1) means flipping around both axes. See also the discussion below for the formulas.
Return Value
Type: 
MatThe destination array; will have the same size and same type as src
 See Also
See Also