src/PET/phantom_slice.md

Fri, 05 Jul 2024 14:48:02 -0500

author
Tuomo Valkonen <tuomov@iki.fi>
date
Fri, 05 Jul 2024 14:48:02 -0500
changeset 68
6e7fa0639be4
parent 49
56cc16c66b39
permissions
-rw-r--r--

Added tag v2.0.2 for changeset afeaa6f6d1ae

# About the phantom slice

The file `phantom_slice.mat` is generated from the file `phantom_atlas_density_cls.mat` of

* Belzunce, M. A. (2018). High-Resolution Heterogeneous Digital PET [18F]FDG Brain Phantom based on the BigBrain Atlas (1.0) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.1190598

The following Matlab code does the extraction:

```matlab
load('phantom_atlas_density_cls.mat')
fdgPhantom = phantom_atlas_density_cls.phantom;
slice = 280;
data = fdgPhantom(:,:,slice);
imwrite(data, 'phantom_slice.png');
save 'phantom_slice.mat' data;
```

mercurial