[06669b]: / PixelLabelIDs.m

Download this file

22 lines (17 with data), 336 Bytes

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