Dataset generator for the CNNeuro project
- Clone repository
git clone https://github.com/khoffschlag/CNNeuro-DS-Generator.git
- Enter the new directory
cd CNNeuro-DS-Generator
- Install python3.9 and pip3
sudo apt update && sudo apt install python3.9 python3-pip
- Install the required python packages
pip3 install -r requirements.txt
- You're ready to try out the example code or write your own dataset generation script!
We smoothed our data with 8mm FWHM but the atrophy transformator wants a sigma value. What can I do?
We can convert the given FWHM smoothing value into a corresponding sigma value.
Use the following equation: sigma = FWHM value⁄2.35482004503
In your case: sigma = FWHM value⁄2.35482004503 = 8⁄2.35482004503 = 3.397287201153446
It's probably sufficient here if you round up to 3.4