-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBeforeUsing.m
22 lines (21 loc) · 1.02 KB
/
BeforeUsing.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
function [ ] = BeforeUsing( )
% Delineation of blood vessels in retinal images based on combination of BCOSFIRE filters responses.
%
% VERSION 02/09/2016
% CREATED BY: George Azzopardi (1), Nicola Strisciuglio (1,2), Mario Vento (2) and Nicolai Petkov (1)
% 1) University of Groningen, Johann Bernoulli Institute for Mathematics and Computer Science, Intelligent Systems
% 2) University of Salerno, Dept. of Information Eng., Electrical Eng. and Applied Math., MIVIA Lab
%
% If you use this script please cite the following paper:
% "George Azzopardi, Nicola Strisciuglio, Mario Vento, Nicolai Petkov,
% Trainable COSFIRE filters for vessel delineation with application to retinal images,
% Medical Image Analysis, Volume 19 , Issue 1 , 46 - 57, ISSN 1361-8415,
% http://dx.doi.org/10.1016/j.media.2014.08.002"
%
% Compile utility MEX functions before using the filters.
disp('Compiling...');
cd COSFIRE
mex dilateDisc.c -output dilate
cd ..
disp('Compiling done.');
disp('Enjoy using B-COSFIRE filters!!!');