Constructor KeyPoint
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
KeyPoint(Point2f, float, float, float, int, int)
Data structure for salient point detectors
public KeyPoint(Point2f Pt, float Size, float Angle = -1, float Response = 0, int Octave = 0, int ClassId = -1)
Parameters
PtPoint2fCoordinate of the point
SizefloatFeature size
AnglefloatFeature orientation in degrees (has negative value if the orientation is not defined/not computed)
ResponsefloatFeature strength (can be used to select only the most prominent key points)
OctaveintScale-space octave in which the feature has been found; may correlate with the size
ClassIdintPoint class (can be used by feature classifiers or object detectors)
Remarks
Complete constructor
KeyPoint(float, float, float, float, float, int, int)
Complete constructor
public KeyPoint(float x, float y, float size, float angle = -1, float response = 0, int octave = 0, int classId = -1)
Parameters
xfloatX-coordinate of the point
yfloatY-coordinate of the point
sizefloatFeature size
anglefloatFeature orientation in degrees (has negative value if the orientation is not defined/not computed)
responsefloatFeature strength (can be used to select only the most prominent key points)
octaveintScale-space octave in which the feature has been found; may correlate with the size
classIdintPoint class (can be used by feature classifiers or object detectors)