| Cv2ConvertPointsFromHomogeneous Method (IEnumerableVec3f) |
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 Vec2f[] ConvertPointsFromHomogeneous(
IEnumerable<Vec3f> src
)
Public Shared Function ConvertPointsFromHomogeneous (
src As IEnumerable(Of Vec3f)
) As Vec2f()
public:
static array<Vec2f>^ ConvertPointsFromHomogeneous(
IEnumerable<Vec3f>^ src
)
static member ConvertPointsFromHomogeneous :
src : IEnumerable<Vec3f> -> Vec2f[]
Parameters
- src
- Type: System.Collections.GenericIEnumerableVec3f
Input vector of N-dimensional points.
Return Value
Type:
Vec2fOutput vector of N-1-dimensional points.
See Also