Closed John1231983 closed 7 years ago
Hi @John1231983 thank you for your post.
For the pre-processing, since we employed FreeSurfer to generate the reference contours, intensity normalization was performed there. However, you are right, and to do that you basically have to subtract the mean and divide by the standard deviation. So that line should be ok to pre-process by yourself the images in python.
For the post-processing, I used regionprops in matlab. For each structure, you have to create a binary image, and then get the area of each non-connected region. I am right now on holidays, but I can provide a python script when I am back to clean the resulted segmentations.
Best
Hi, thanks for great performance. I read your papers and interested in pre-/post- processing steps. In your paper, you mentioned that
So, given an image
img
(depthxwidthxheight) and ROI region-separates brain and background- the volume-wise intensity normalization meansimg=(img-img[ROI].mean())/img[ROI].std()
(PYTHON). Am I right?For the second point, could you provide some script to implement it? I did not find it in your code.
Thanks