Algorithm 2 Enhanced Region Growing Segmentation for Brain Tumor Segmentation |
-
1:
input: skull stripped image,
-
2:
Resize the Image
-
3:
iterate through each block
-
4:
for
do
-
5:
for
do
-
6:
Collect the mean of each block
-
7:
Collect the centers of each block
-
8:
end for
-
9:
end for
-
10:
Select top 5 blocks based on the intensity
-
11:
return
-
12:
for
do
-
13:
ROI= Region-growing(seed)
-
14:
end for
-
15:
Compare each ROI against GT using evaluation parameters for
-
16:
Select the best ROI as a final segmentation output.
|