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