Diff of /PixelLabelIDs.m [000000] .. [06669b]

Switch to unified view

a b/PixelLabelIDs.m
1
% Developer: Tonmoy Ghosh (tghosh@crimson.ua.edu)
2
function labelIDs = PixelLabelIDs()
3
labelIDs = { ...
4
    
5
    % "Bleeding"
6
    [
7
    255 000 000; ... % "Bleeding"
8
    ]
9
    
10
    % "Non-Bleeding"
11
    [
12
    000 255 255; ... % "Non-Bleeding"
13
    ]
14
    
15
    % "Background" 
16
    [
17
    000 000 000; ... % "Background"
18
    ]
19
    
20
21
    };
22
end