Package org.opencv.core
Class KeyPoint
- java.lang.Object
- 
- org.opencv.core.KeyPoint
 
- 
 public class KeyPoint extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description floatangleComputed orientation of the keypoint (-1 if not applicable).intclass_idObject ID, that can be used to cluster keypoints by an object they belong to.intoctaveOctave (pyramid layer), from which the keypoint has been extracted.PointptCoordinates of the keypoint.floatresponseThe response, by which the strongest keypoints have been selected.floatsizeDiameter of the useful keypoint adjacent area.
 - 
Constructor SummaryConstructors Constructor Description KeyPoint()KeyPoint(float x, float y, float _size)KeyPoint(float x, float y, float _size, float _angle)KeyPoint(float x, float y, float _size, float _angle, float _response)KeyPoint(float x, float y, float _size, float _angle, float _response, int _octave)KeyPoint(float x, float y, float _size, float _angle, float _response, int _octave, int _class_id)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
 
- 
- 
- 
Field Detail- 
ptpublic Point pt Coordinates of the keypoint.
 - 
sizepublic float size Diameter of the useful keypoint adjacent area.
 - 
anglepublic float angle Computed orientation of the keypoint (-1 if not applicable).
 - 
responsepublic float response The response, by which the strongest keypoints have been selected. Can be used for further sorting or subsampling.
 - 
octavepublic int octave Octave (pyramid layer), from which the keypoint has been extracted.
 - 
class_idpublic int class_id Object ID, that can be used to cluster keypoints by an object they belong to.
 
- 
 - 
Constructor Detail- 
KeyPointpublic KeyPoint(float x, float y, float _size, float _angle, float _response, int _octave, int _class_id)
 - 
KeyPointpublic KeyPoint() 
 - 
KeyPointpublic KeyPoint(float x, float y, float _size, float _angle, float _response, int _octave)
 - 
KeyPointpublic KeyPoint(float x, float y, float _size, float _angle, float _response)
 - 
KeyPointpublic KeyPoint(float x, float y, float _size, float _angle)
 - 
KeyPointpublic KeyPoint(float x, float y, float _size)
 
- 
 
-