Rank: 49824 based on 0 downloads (last 30 days) and 0 files submitted
photo

Cippo Lippo

E-mail

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Comments and Ratings by Cippo
Updated File Comments Rating
10 Nov 2009 Retinal Blood Vessel Extraction Extracts blood vessels from a retina image using Kirsch's Templates Author: Athi

To speed the program up you should not use the for loops in VesselExtract.m:60-68

You can easily vectorise the code with:
    bloodVessels = max(t1,t2);
    bloodVessels = max(bloodVessels,t3);
    bloodVessels = max(bloodVessels,t4);
    bloodVessels = max(bloodVessels,t5);
    bloodVessels = max(bloodVessels,t6);
    bloodVessels = max(bloodVessels,t7);
    bloodVessels = max(bloodVessels,t8);

Contact us at files@mathworks.com