<< cv_displaykeypoint ComputerVision cv_ellipse >>

ComputerVision >> ComputerVision > cv_drawmatches

cv_drawmatches

To draw matches with respect to keypoints

Calling Sequence

img_ret=cv_drawmatches(image1,kp1,image2,kp2)

Arguments

image1

First image: Must be np.ndarray

kp1

Keypoints with respect to first Image

image2

second image: Must be np.ndarray

kp2

Keypoints with respect to first Image

matches

Array of good Matches that is to be drawn : example matches[:100] -> top hundred matches

image_ret

Returned Image

Description

To draw good matches

This function is used to match the keypoints of one image to keypoints of another image

Examples

image=cv_drawmatches(image1, kp1, image2, kp2, matches)

See Also


Report an issue
<< cv_displaykeypoint ComputerVision cv_ellipse >>