How to perform morphological reconstruction by dilation?

조회 수: 6 (최근 30일)
Krishna Chaitanya
Krishna Chaitanya 2020년 1월 17일
I am performing retinal blood vessel segmentation and i need to perform morphological reconstruction by dilation.
I am implementing a paper titled " AUTOMATIC DETECTION OF MICROANEURYSMS AND HEMORRHAGES IN COLOR EYE FUNDUS IMAGES" by Sérgio Bortolin Júnior1 and Daniel Welfer2 .
I quote from paper," the detection of the blood vessels was performed from a morphological reconstruction by dilation, denoted by R. In this operation, we used a diamond-shaped structuring element with radius of 1 pixel."
In the below image, first image is f9 and the second image is f10 (the reconstructed output)
f910.PNG
I am attaching an example of f9 as f9.jpg
Can somebody help me do this task?
Thank you.

답변 (2개)

Constantino Carlos Reyes-Aldasoro
Dear Krishna
I have seen several of your questions, I think that you would greatly benefit if you would study some Matlab and Image Processing before you try to tackle your problems, which require you to know some basics like labelling, dilation, erosion, etc. There are many websites and books that can teach you these and a week of study would reap huge benefits later on. I have written one book on the topic, but there are many others, the classic textbooks of Gonzalez & Woods, or Sonka are very good.
This is the book I mentioned:
  댓글 수: 1
Krishna Chaitanya
Krishna Chaitanya 2020년 1월 18일
Thank you for the book! I would definitely study it this weekend,but I need to complete this part urgently as there are many other tasks depending on it.
It would be a great help if you kindly help me with this task.
Just a pseudocode with the necessary methods would be a great help.
Thank you.

댓글을 달려면 로그인하십시오.


Constantino Carlos Reyes-Aldasoro
Dilation is rather simple, but perhaps there are more steps to what you want:
f9_dil = imdilate(f9,strel('diamond',3));

Community Treasure Hunt

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

Start Hunting!

Translated by