| Cv2ConvertPointsFromHomogeneous Method (IEnumerableVec4f) |
converts point coordinates from homogeneous to normal pixel coordinates ((x,y,z)->(x/z, y/z))
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static Vec3f[] ConvertPointsFromHomogeneous(
IEnumerable<Vec4f> src
)
Public Shared Function ConvertPointsFromHomogeneous (
src As IEnumerable(Of Vec4f)
) As Vec3f()
public:
static array<Vec3f>^ ConvertPointsFromHomogeneous(
IEnumerable<Vec4f>^ src
)
static member ConvertPointsFromHomogeneous :
src : IEnumerable<Vec4f> -> Vec3f[]
Parameters
- src
- Type: System.Collections.GenericIEnumerableVec4f
Input vector of N-dimensional points.
Return Value
Type:
Vec3fOutput vector of N-1-dimensional points.
See Also