| MatPerspectiveTransform Method |
performs perspective transformation of each element of multi-channel input matrix
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Mat PerspectiveTransform(
InputArray m
)
Public Function PerspectiveTransform (
m As InputArray
) As Mat
public:
Mat^ PerspectiveTransform(
InputArray^ m
)
member PerspectiveTransform :
m : InputArray -> Mat
Parameters
- m
- Type: OpenCvSharpInputArray
3x3 or 4x4 transformation matrix
Return Value
Type:
MatThe destination array; it will have the same size and same type as src
See Also