Sobel算子matlab實現 分類: 圖像處理 2...

算子實際上是用來對圖像進行卷積處理,其本質是用變分法來處理梯度問題,用途就是邊緣檢測。45度和135度效果一般,水平檢測加垂直檢測效果還可以。 function Sobel(name,Threshold)   f = imread(name);   f = rgb2gray(f);   f = im2double(f);   subplot(231);      imshow(f),title('
相關文章
相關標籤/搜索