Filter löschen
Filter löschen

connecting image extreme (end) boundries

1 Ansicht (letzte 30 Tage)
Iram Shahzadi
Iram Shahzadi am 27 Mai 2020
Kommentiert: Iram Shahzadi am 27 Mai 2020
Hi, I have edge detected image. I want to connect all the pixels at extreme edges and fill the region inside, so that i have a binary mask of this image without any gaps. I used imdilate but this introduce thickness in boundries that i do not want in image. Can anyone please guide how I can do it. thanks

Akzeptierte Antwort

Image Analyst
Image Analyst am 27 Mai 2020
Try
mask = bwconvhull(mask, 'union');
or else try imclose() followed by imfill(), or try activecontour() (demo attached).
  1 Kommentar
Iram Shahzadi
Iram Shahzadi am 27 Mai 2020
Thanks a lot, i used bwconvhull followed activecontour and with 200 iterations and got desired results. I was able to use activecontour as I have original image from which i created edge detected image initially.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by