forked from architkaila/Super-Resolution-for-Medical-Images
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.py
More file actions
19 lines (18 loc) · 1.11 KB
/
config.py
File metadata and controls
19 lines (18 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## Page names for streamlit sidebar
PAGES = [
'Home',
'Image Enhancer Example',
'Try Your Own Image',
'Technical Details',
]
## Path to sample images
SAMPLE_IMAGES = [
{'image_id':'Patient 1', 'image_path':'./data/sample_xrays/00001088_023.png', 'selected':False},
{'image_id':'Patient 2', 'image_path':'./data/sample_xrays/00001088_025.png', 'selected':False},
{'image_id':'Patient 3', 'image_path':'./data/sample_xrays/00001088_026.png', 'selected':False},
{'image_id':'Patient 4', 'image_path':'./data/sample_xrays/00001088_027.png', 'selected':False},
{'image_id':'Patient 5', 'image_path':'./data/sample_xrays/00001089_000.png', 'selected':False},
{'image_id':'Patient 6', 'image_path':'./data/sample_xrays/00001089_001.png', 'selected':False},
{'image_id':'Patient 7', 'image_path':'./data/sample_xrays/00001089_002.png', 'selected':False},
{'image_id':'Patient 8', 'image_path':'./data/sample_xrays/00001091_000.png', 'selected':False}
]