Laplacian of Gaussian filter
99 次查看(过去 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!