<< imextract_DescriptorBRIEF Feature Detection, Description and Matching imextract_DescriptorFREAK >>

IPCV - Image Processing and Computer Vision Toolbox for Scilab >> Feature Detection, Description and Matching > imextract_DescriptorBRISK

imextract_DescriptorBRISK

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

Syntax

des = imextract_DescriptorBRISK(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 BRISK method

Examples

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

See also

Authors

Bibliography

1. OpenCV 2.4 Online Documentation


Report an issue
<< imextract_DescriptorBRIEF Feature Detection, Description and Matching imextract_DescriptorFREAK >>