|  | Cv2PerspectiveTransform Method (IEnumerablePoint3d, Mat) | 
 
            performs perspective transformation of each element of multi-channel input matrix
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
 Syntax
Syntaxpublic static Point3d[] PerspectiveTransform(
	IEnumerable<Point3d> src,
	Mat m
)
Public Shared Function PerspectiveTransform ( 
	src As IEnumerable(Of Point3d),
	m As Mat
) As Point3d()
public:
static array<Point3d>^ PerspectiveTransform(
	IEnumerable<Point3d>^ src, 
	Mat^ m
)
static member PerspectiveTransform : 
        src : IEnumerable<Point3d> * 
        m : Mat -> Point3d[] 
Parameters
- src
- Type: System.Collections.GenericIEnumerablePoint3d
 The source two-channel or three-channel floating-point array; 
            each element is 2D/3D vector to be transformed
- m
- Type: OpenCvSharpMat
 3x3 or 4x4 transformation matrix
Return Value
Type: 
Point3dThe destination array; it will have the same size and same type as src
 See Also
See Also