Method GetUnnormalizedDescriptor
- Namespace
- OpenCvSharp.XFeatures2D
- Assembly
- OpenCvSharp.dll
GetUnnormalizedDescriptor(double, double, int)
Retrieves the unnormalized descriptor at the given position and orientation.
public float[] GetUnnormalizedDescriptor(double y, double x, int orientation)
Parameters
ydoublePosition y on image.
xdoublePosition x on image.
orientationintOrientation on image (0-360).
Returns
- float[]
The computed descriptor.
GetUnnormalizedDescriptor(double, double, int, double[], out float[])
Retrieves the unnormalized descriptor at the given position and orientation, using a homography matrix for the warped grid.
public bool GetUnnormalizedDescriptor(double y, double x, int orientation, double[] h, out float[] descriptor)
Parameters
ydoublePosition y on image.
xdoublePosition x on image.
orientationintOrientation on image (0-360).
hdouble[]Homography matrix for warped grid (row-major, 9 elements).
descriptorfloat[]The computed descriptor.
Returns
- bool
false if the descriptor could not be computed (e.g. it falls outside the image), true otherwise.