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