<< imextract_DescriptorSIFT Feature Detection, Description and Matching immatch_BruteForce >>

IPCV >> Feature Detection, Description and Matching > imextract_DescriptorSURF

imextract_DescriptorSURF

Computes the descriptors for a set of keypoints detected in an image with SURF method.

Syntax

des = imextract_DescriptorSURF(im1,fobj1);

Parameters

im1 :

Input image

fobj1 :

Features

des :

Descriptors for the features

Description

This function extracts the descriptors of an image's features with SURF method

Examples

S = imcreatechecker(8,4,[1 0.5]);
fobj = imdetect_SURF(S);
imshow(S); plotfeature(fobj);
des = imextract_DescriptorSURF(S,fobj);

See also

Authors

Bibliography

1. OpenCV 2.4 Online Documentation


Report an issue
<< imextract_DescriptorSIFT Feature Detection, Description and Matching immatch_BruteForce >>