Laplacian edge operator
Show older comments
i coded up Laplacian edge operator using MFC c++ .. now i want to varify the result using matlab..
Laplacian Operator and Campass Gradient Operator: result is given below website: http://imm.io/626r
I used Prewitt for Compass Gradeint Operator ... How can i apply this in matlab ?
how can i apply laplacian operator in maltab.. is there any function for that ? i need a sample or example for laplacian operator in matlab.. any one can help me please ?
Thanks in Advace
Accepted Answer
More Answers (2)
Harsha Vardhan Rao Avunoori
on 30 May 2011
0 votes
If you are interested in applying a Laplacian mask to determine the edges then you can try this
BW = edge( I,'log');
where I is your input image you can also search for edge in your MATLAB Help
1 Comment
David Young
on 30 May 2011
This also does zero-crossing detection, so you can't compare the results directly to your C++ code.
Categories
Find more on Object Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!