OpenCV for Unity  2.6.0
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.9.0/index.html ) for the details of the argument of the method.
Public Member Functions | Public Attributes | List of all members
OpenCVForUnity.CoreModule.KeyPoint Class Reference

Public Member Functions

 KeyPoint (float x, float y, float _size, float _angle, float _response, int _octave, int _class_id)
 
 KeyPoint ()
 
 KeyPoint (float x, float y, float _size, float _angle, float _response, int _octave)
 
 KeyPoint (float x, float y, float _size, float _angle, float _response)
 
 KeyPoint (float x, float y, float _size, float _angle)
 
 KeyPoint (float x, float y, float _size)
 
override string ToString ()
 

Public Attributes

Point pt
 
float size
 
float angle
 
float response
 
int octave
 
int class_id
 

Detailed Description

Data structure for salient point detectors.

coordinates of the keypoint

diameter of the meaningful keypoint neighborhood

// C++ code:

computed orientation of the keypoint (-1 if not applicable). Its possible values are in a range [0,360) degrees. It is measured relative to image coordinate system (y-axis is directed downward), ie in clockwise.

the response by which the most strong keypoints have been selected. Can be used for further sorting or subsampling

octave (pyramid layer) from which the keypoint has been extracted

object id that can be used to clustered keypoints by an object they belong to

See also
org.opencv.features2d.KeyPoint

Constructor & Destructor Documentation

◆ KeyPoint() [1/6]

OpenCVForUnity.CoreModule.KeyPoint.KeyPoint ( float  x,
float  y,
float  _size,
float  _angle,
float  _response,
int  _octave,
int  _class_id 
)

The keypoint constructors

Parameters
xx-coordinate of the keypoint
yy-coordinate of the keypoint
_sizekeypoint diameter
_anglekeypoint orientation
_responsekeypoint detector response on the keypoint (that is, strength of the keypoint)
_octavepyramid octave in which the keypoint has been detected
_class_idobject id
See also
org.opencv.features2d.KeyPoint.KeyPoint

◆ KeyPoint() [2/6]

OpenCVForUnity.CoreModule.KeyPoint.KeyPoint ( )

The keypoint constructors

See also
org.opencv.features2d.KeyPoint.KeyPoint

◆ KeyPoint() [3/6]

OpenCVForUnity.CoreModule.KeyPoint.KeyPoint ( float  x,
float  y,
float  _size,
float  _angle,
float  _response,
int  _octave 
)

The keypoint constructors

Parameters
xx-coordinate of the keypoint
yy-coordinate of the keypoint
_sizekeypoint diameter
_anglekeypoint orientation
_responsekeypoint detector response on the keypoint (that is, strength of the keypoint)
_octavepyramid octave in which the keypoint has been detected
See also
org.opencv.features2d.KeyPoint.KeyPoint

◆ KeyPoint() [4/6]

OpenCVForUnity.CoreModule.KeyPoint.KeyPoint ( float  x,
float  y,
float  _size,
float  _angle,
float  _response 
)

The keypoint constructors

Parameters
xx-coordinate of the keypoint
yy-coordinate of the keypoint
_sizekeypoint diameter
_anglekeypoint orientation
_responsekeypoint detector response on the keypoint (that is, strength of the keypoint)
See also
org.opencv.features2d.KeyPoint.KeyPoint

◆ KeyPoint() [5/6]

OpenCVForUnity.CoreModule.KeyPoint.KeyPoint ( float  x,
float  y,
float  _size,
float  _angle 
)

The keypoint constructors

Parameters
xx-coordinate of the keypoint
yy-coordinate of the keypoint
_sizekeypoint diameter
_anglekeypoint orientation
See also
org.opencv.features2d.KeyPoint.KeyPoint

◆ KeyPoint() [6/6]

OpenCVForUnity.CoreModule.KeyPoint.KeyPoint ( float  x,
float  y,
float  _size 
)

The keypoint constructors

Parameters
xx-coordinate of the keypoint
yy-coordinate of the keypoint
_sizekeypoint diameter
See also
org.opencv.features2d.KeyPoint.KeyPoint

Member Function Documentation

◆ ToString()

override string OpenCVForUnity.CoreModule.KeyPoint.ToString ( )

Member Data Documentation

◆ angle

float OpenCVForUnity.CoreModule.KeyPoint.angle

Computed orientation of the keypoint (-1 if not applicable).

◆ class_id

int OpenCVForUnity.CoreModule.KeyPoint.class_id

Object ID, that can be used to cluster keypoints by an object they belong to.

◆ octave

int OpenCVForUnity.CoreModule.KeyPoint.octave

Octave (pyramid layer), from which the keypoint has been extracted.

◆ pt

Point OpenCVForUnity.CoreModule.KeyPoint.pt

Coordinates of the keypoint.

◆ response

float OpenCVForUnity.CoreModule.KeyPoint.response

The response, by which the strongest keypoints have been selected. Can be used for further sorting or subsampling.

◆ size

float OpenCVForUnity.CoreModule.KeyPoint.size

Diameter of the useful keypoint adjacent area.


The documentation for this class was generated from the following file: