www.gusucode.com > vision 源码程序 matlab案例代码 > vision/DetectBRISKFeaturesInAnImageExample.m

    %% Detect BRISK Features in an Image

% Copyright 2015 The MathWorks, Inc.


%% Read an image and detect the BRISK interest points.
  I = imread('cameraman.tif');
  points = detectBRISKFeatures(I);

%% Select and plot the 10 strongest interest points.
  strongest = points.selectStrongest(10);
  imshow(I); hold on;
  plot(strongest);

%% Display the [x y] coordinates.
  strongest.Location