Add some tests on different variations of Hough algorithm.
[master-thesis.git] / src / Tests_hough / test_all.m
1 clear;
2
3 images_path = 'D:\Master Thesis\src\Tests_hough\images\';
4 image_names = {
5 %     'heap_1.png'
6 %     
7 %     'rbc_single.png'
8 %     'rbc_single_blurred.png'
9     
10 %     'rbc_single_oblong_1.png'
11     'rbc_single_oblong_2.png'
12 %     'rbc_single_oblong_3.png'
13 %     
14 %     'two_rbc_1.png'
15 %     'two_rbc_2.png'
16 %     'two_rbc_3.png'
17 %     'wbc_1.png'
18 %     'wbc_2.png'
19     };
20
21 for k = 1:length(image_names)
22     image_name = image_names{k};
23     
24 %     test_hough_simple(images_path, image_name);
25 %     close all;
26
27 %     test_hough_gradient(images_path, image_name, false)
28 %     close all;
29
30 %    test_hough_ma(images_path, image_name)
31 %       close all;
32     
33 %     test_hough_ellipses(images_path, image_name);
34 %     close all;
35     
36      test_hough_ellipses2(images_path, image_name);
37 %     close all;
38 end