How to segment an image using Laplacian kernel?

I need to employ the Laplacian kernel for omage segmentation .How can it be done using matlab code?Can anyone help me out with ur valuable suggestion.

Answers (2)

What do you mean? The Laplacian is a high pass filter. What do you want to segment? Where did you upload your image? Have you tried imfilter() or conv2() to perform the Laplacian filter?

1 Comment

Regarding your "Answer" ... How do you want to segment it? Will thresholding to the job?
edgeImage = filteredImage > 5;

Sign in to comment.

i used conv2 for the filter.i actually use an adaptive laplacian kernel that preserves edges.Now with the aid of this adative kernel i need to perform image segmentation.

Categories

Asked:

on 25 Mar 2013

Community Treasure Hunt

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

Start Hunting!