Views
No views yet
⚠️ These are weights only. The.ckptfiles cannot be used on their own. You must clone the code from the GitHub repository above to load and run them (see Usage).
| File | Paired config (in the GitHub repo) | Notes |
|---|---|---|
PerX2CT.ckpt | configs/PerX2CT.yaml | Base PerX2CT model (full-frame reconstruction). |
PerX2CT_global.ckpt | configs/PerX2CT_global_w_zoomin.yaml | PerX2CT-global model, trained with zoom-in; supports zoom-in (sub-region) reconstruction. |
1# 1. Get the code
2git clone https://github.com/dek924/PerX2CT.git
3cd PerX2CT
4
5# 2. Environment
6conda create -n perx2ct python=3.8
7conda activate perx2ct
8pip install --upgrade pip
9pip install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 \
10 -f https://download.pytorch.org/whl/torch_stable.html
11pip install -r requirement.txt
12
13# 3. Download the checkpoints from this Hugging Face repo, then run inference.1python main_test.py \
2 --ckpt_path /path/to/PerX2CT.ckpt \
3 --config_path configs/PerX2CT.yaml \
4 --save_dir /path/to/output \
5 --val_test testPerX2CT_global.ckpt + configs/PerX2CT_global_w_zoomin.yaml)1python main_test_zoom.py \
2 --ckpt_path /path/to/PerX2CT_global.ckpt \
3 --config_path configs/PerX2CT_global_w_zoomin.yaml \
4 --save_dir /path/to/output \
5 --zoom_size <target_zoomin_patch_size>.ckpt files in this repository): Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0). Non-commercial use only; attribution required.taming/) is MIT. The inference code needed to run these weights does not require the GPLv3 preprocessing scripts.1@INPROCEEDINGS{kyung2023perx2ct,
2 author={Kyung, Daeun and Jo, Kyungmin and Choo, Jaegul and Lee, Joonseok and Choi, Edward},
3 booktitle={ICASSP 2023 - 2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
4 title={Perspective Projection-Based 3d CT Reconstruction from Biplanar X-Rays},
5 year={2023},
6 pages={1-5},
7 doi={10.1109/ICASSP49357.2023.10096296}}1@article{armato2011lidc,
2 title={The Lung Image Database Consortium (LIDC) and Image Database Resource Initiative (IDRI): A completed reference database of lung nodules on CT scans},
3 author={Armato III, Samuel G. and McLennan, Geoffrey and Bidaut, Luc and others},
4 journal={Medical Physics},
5 volume={38}, number={2}, pages={915--931}, year={2011},
6 doi={10.1118/1.3528204}}1@article{clark2013tcia,
2 title={The Cancer Imaging Archive (TCIA): Maintaining and Operating a Public Information Repository},
3 author={Clark, Kenneth and Vendt, Bruce and Smith, Kirk and others},
4 journal={Journal of Digital Imaging},
5 volume={26}, number={6}, pages={1045--1057}, year={2013},
6 doi={10.1007/s10278-013-9622-7}}The LIDC-IDRI data citation / DOI (separate from the publication above) is provided on the current TCIA collection page — please copy it from https://www.cancerimagingarchive.net/collection/lidc-idri/ to ensure it is up to date.