?? cannyedge.m
字號:
% Canny edge detection
% im=rgb2gray(im);
%Convolve image with gaussian of scale sigma=1.4 for smoothing
function fimage=cannyedge(im,high,low)
% im=imread('911.bmp');
% im=im(40:260,60:300);
% im=rgb2gray(im);
imnew=casd(im);
%Determining image gradient with sobel operator
[imnew1,edge]=sobcas(imnew);
[fimage]=finalcanny(imnew1,edge,high,low);
% imshow(uint8(fimage));
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -