Increase edge thickness in binary?

30 vues (au cours des 30 derniers jours)
Steven
Steven le 27 Oct 2014
Commenté : Steven le 28 Oct 2014
Hi
I have detected the edges of an image using "bwperim". I want to increase the thickness the edges (such as the sides of a square) to make it more visible. How can I do it using Image Processing Toolbox?
Thanks!
Steven

Réponse acceptée

Anand
Anand le 27 Oct 2014
Have a look at the imdilate function.
Here's a quick example,
BW1 = imread('circbw.tif');
BW2 = bwperim(BW1,8);
BW3 = imdilate(BW2, strel('disk',1));
  1 commentaire
Steven
Steven le 28 Oct 2014
Thanks Anand!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by