Algorithm 1 Skull Stripping |
-
1:
input: gray scale image,
-
2:
Calculate Otsu’s Threshold
-
3:
Threshold the image
-
4:
Open the binary image using a disk structuring Seed
-
5:
Dilate the binary image
-
6:
Select the largest binary image
-
7:
Dilate the binary image
-
8:
Fill holes on the binary image
-
9:
Remove the skull
-
10:
return
|