Solved–Project 2 Edge Detection– Solution

$35.00 $24.00

Given four color retinal images, blood vessels are major anatomical structures which are very important for disease diagnosis. You are required to implement the three edge detection algorithms you learned from the class to extract the blood vessels. The images are RGB true color (24 bits per pixel). You can implement edge detection on the…

You’ll get a: . zip file solution

 

 
Categorys:

Description

5/5 – (2 votes)
  1. Given four color retinal images, blood vessels are major anatomical structures which are very important for disease diagnosis. You are required to implement the three edge detection algorithms you learned from the class to extract the blood vessels.
    1. The images are RGB true color (24 bits per pixel). You can implement edge detection on the green channel only (I=imread(‘retina1.bmp’); J(:,:)=I(:,:,2);).
    2. Implement blood vessel extraction by using both Laplacian of Gaussian (LoG) and the Canny detector. You are encouraged to try several different parameters in both LoG and Canny detector as well. For Canny detection, all edge pixels should be color-coded (four colors) to indicate the orientations.
    3. Implement the Matched filtering-based blood vessel extraction. Try to optimize the parameters in matched filtering.
  2. Some useful Matlab functions for post-processing the edge detection results
    1. [X, Num]=BWLABEL(I): Label connected components in binary image. You can use it to remove small edge branches (length filtering). The detailed length filter procedure is followed.
      1. Use BWLABEL to label binary image pixels as different connected components and to obtain the number of connected components.
      2. For each connected component, count the number of pixels which share the same label (Y=FIND(I==i));
  • Remove the connected components with small numbers of pixels.
  1. BWMORPH(I, ‘thin’): Do the thinning of edges to find the centerline.

 

PPT Report Requirements.

  1. Briefly discuss and compare three edge detection techniques.
  2. The source codes for three methods should be attached.
  3. Demonstrate and discuss your experimental results for all four retinal images. Try to optimize the parameters to produce good edge detection results. Some examples are shown below.

 

A retinal image                                     Canny detection                                 LoG detection

 

Matched filtering detection            Thinning result                                  Superimposed result