-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject_structure.txt
More file actions
66 lines (64 loc) · 2.21 KB
/
project_structure.txt
File metadata and controls
66 lines (64 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
pyvoxeldosimetry/
├── LICENSE
├── README.md
├── setup.py
├── requirements.txt
├── pyvoxeldosimetry/
│ ├── __init__.py
│ ├── data/
│ │ ├── __init__.py
│ │ ├── dose_kernels/
│ │ │ ├── F18/
│ │ │ ├── Ga68/
│ │ │ ├── Cu64/
│ │ │ ├── Zr89/
│ │ │ ├── Y90/
│ │ │ ├── I131/
│ │ │ ├── Lu177/
│ │ │ ├── Tb161/
│ │ │ ├── Ac225/
│ │ │ └── Pb212/
| | ├── mc_decay/
│ | | ├── __init__.py
│ | | ├── F18.json
│ | | ├── Ga68.json
│ | | ├── Cu64.json
│ | | ├── Zr89.json
│ | | ├── Y90.json
│ | | ├── I131.json
│ | | ├── Lu177.json
│ | | ├── Tb161.json
│ | | ├── Ac225.json
│ | | ├── Pb212.json
│ | | └── README.md
│ │ └── pretrained_models/
│ │ ├── organ_segmentation/
│ │ └── lesion_segmentation/
│ ├── config/
│ │ ├── __init__.py
│ │ ├── radionuclides.py
│ │ └── tissue_properties.py
│ ├── segmentation/
│ │ ├── __init__.py
│ │ ├── nnunet_wrapper.py
│ │ ├── organ_segmentation.py
│ │ └── lesion_segmentation.py
│ └── [other existing folders...]
pyvoxeldosimetry/
├── data/
│ ├── dose_kernels/ # Pre-calculated dose kernels
│ └── pretrained_models/ # nnU-Net models
├── core/ # Core dosimetry calculations
├── tissue/ # Tissue composition handling
├── segmentation/ # Deep learning segmentation
├── registration/ # Image registration
└── time_integration/ # Time-activity fitting
pyvoxeldosimetry/core/
├── __init__.py
├── dosimetry_base.py
├── monte_carlo.py
├── kernel_convolution.py
├── activity_sampler.py
├── image_registration.py
├── dose_calculator.py
└── utils.py