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

IPCV >> Feature Detection, Description and Matching > imextract_DescriptorORB

imextract_DescriptorORB

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

Syntax

des = imextract_DescriptorORB(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 ORB method

Examples

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

See also

Authors

Bibliography

1. OpenCV 2.4 Online Documentation


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