Laplacian of Gaussian filter
93 ビュー (過去 30 日間)
古いコメントを表示
can anyone please tell how to implement laplacian of gaussian filter on an image in matlab
2 件のコメント
MANISHA GOSWAMI
2017 年 3 月 3 日
f=img; w=fspecial('log',[3 3],0.5); filtered_img=imfilter(f,w,'replicate'); imshow(filtered_img);
回答 (2 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!