Features2DToolboxDrawKeypoints Method |
http://www.emgu.com
Draw the keypoints found on the image.
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void DrawKeypoints(
IInputArray image,
VectorOfKeyPoint keypoints,
IInputOutputArray outImage,
Bgr color,
Features2DToolboxKeypointDrawType type = Features2DToolboxKeypointDrawType.Default
)
Public Shared Sub DrawKeypoints (
image As IInputArray,
keypoints As VectorOfKeyPoint,
outImage As IInputOutputArray,
color As Bgr,
Optional type As Features2DToolboxKeypointDrawType = Features2DToolboxKeypointDrawType.Default
)
public:
static void DrawKeypoints(
IInputArray^ image,
VectorOfKeyPoint^ keypoints,
IInputOutputArray^ outImage,
Bgr color,
Features2DToolboxKeypointDrawType type = Features2DToolboxKeypointDrawType::Default
)
static member DrawKeypoints :
image : IInputArray *
keypoints : VectorOfKeyPoint *
outImage : IInputOutputArray *
color : Bgr *
?type : Features2DToolboxKeypointDrawType
(* Defaults:
let _type = defaultArg type Features2DToolboxKeypointDrawType.Default
*)
-> unit
Parameters
- image
- Type: Emgu.CVIInputArray
The image - keypoints
- Type: Emgu.CV.UtilVectorOfKeyPoint
The keypoints to be drawn - outImage
- Type: Emgu.CVIInputOutputArray
The image with the keypoints drawn - color
- Type: Emgu.CV.StructureBgr
The color used to draw the keypoints - type (Optional)
- Type: Emgu.CV.Features2DFeatures2DToolboxKeypointDrawType
The drawing type
See Also