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

    %% Plot Corner Features  

%% 
% Read an image. 
 I = imread('cameraman.tif');  

%% 
% Detect corner features. 
 featurePoints = detectHarrisFeatures(I);  

%% 
% Plot feature image with detected features. 
 imshow(I); hold on;
 plot(featurePoints);