Total members 10262 | Gratitudes |It is currently Wed May 23, 2012 9:50 pm Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 2 posts ] 
Author Code Snippet
 Code subject: apply laplacian filter to image
PostPosted: Sun Mar 27, 2011 9:53 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2279
Location: Earth
Has thanked: 39 time
Have thanks: 61 time

Laplacian filter is a second derivative edge detector operator .Laplacian is more sensitive to noise than sobel and prewitt.Laplacian calculate the difference of center point to the surrounding pixels .

Code:

    clc
;
   
    
%% create a new figure to show the image . 
    newImg 
= imread('Water lilies.jpg');
    figure(1);
    imshow(newImg);
    figure(2);
     %% create laplacian filter. 
    H 
= fspecial('laplacian');
     %% apply laplacian filter. 
    blurred 
= imfilter(newImg,H);
    imshow(blurred); title('Edge detected Image')

 


Attachments:
1.GIF
1.GIF [ 85.99 KiB | Viewed 2657 times ]

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )
TOP
 Profile Send private message  
Reply with quote  
 Code subject: Re: apply laplacian filter to image
PostPosted: Fri Jun 10, 2011 5:08 am 
Offline
Newbie
User avatar

Joined: Fri Jun 10, 2011 5:04 am
Posts: 1
Has thanked: 0 time
Have thanks: 0 time
hi, do u know how to apply 3x3 laplacian filter with 8 at the center?


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 2 posts ] 
Quick reply


  

 Similar topics
 Image Insert in Excel File Using POI
 image processing
 help me How do I load image from my pc to matlab
 Image compression
 JavaCV crop image
 Draw rectangle on image
 Show image using before property
 Show image when click on link
 Many links for the one image
 Set image size as a percentage of the page size

All times are UTC [ DST ]


Users browsing similar codes

Users browsing this forum: No registered users and 3 guests



Jump to:  
Previous Code Snippet | Next Code Snippet 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team