Laplacian of Gaussian filter

can anyone please tell how to implement laplacian of gaussian filter on an image in matlab

2 Comments

please give me answer
f=img; w=fspecial('log',[3 3],0.5); filtered_img=imfilter(f,w,'replicate'); imshow(filtered_img);

Sign in to comment.

Answers (2)

Thomas
Thomas on 30 Mar 2012
This page has some Information for Laplacian of Gaussian (LOG)

1 Comment

it tells about laplacian of gaussian for egbe detection but I want LoG filter to remove deformities

Sign in to comment.

Asked:

on 30 Mar 2012

Commented:

on 3 Mar 2017

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!