:param keypoints:Keypoints obtained from any feature detection algorithm like SIFT/SURF/ORB
:param points2f:Array of (x,y) coordinates of each keypoint
:param keypointIndexes:Array of indexes of keypoints to be converted to points. (Acts like a mask to convert only specified keypoints)
:param _size:keypoint diameter
:param _response:keypoint detector response on the keypoint (that is, strength of the keypoint)
:param _octave:pyramid octave in which the keypoint has been detected
:param _class_id:object id
KeyPoint::overlap
--------------------
This method computes overlap for pair of keypoints. Overlap is the ratio between area of keypoint regions' intersection and area of keypoint regions' union (considering keypoint region as circle). If they don't overlap, we get zero. If they coincide at same location with same size, we get 1.
@ -81,7 +81,7 @@ The function ``imshow`` displays an image in the specified window. If the window
If window was created with OpenGL support, ``imshow`` also support :ocv:class:`ogl::Buffer` , :ocv:class:`ogl::Texture2D` and :ocv:class:`gpu::GpuMat` as input.
..note:: This function should be followed by ``waitKey`` function which displays the image for specified milliseconds. Otherwise, it won't display the image.
..note:: This function should be followed by ``waitKey`` function which displays the image for specified milliseconds. Otherwise, it won't display the image. For example, ``waitKey(0)`` will display the window infinitely until any keypress (it is suitable for image display). ``waitKey(25)`` will display a frame for 25 ms, after which display will be automatically closed. (If you put it in a loop to read videos, it will display the video frame-by-frame)