Skip to content

Commit e6c9a9b

Browse files
authored
Update README (#5)
1 parent 3cc1e35 commit e6c9a9b

6 files changed

Lines changed: 17 additions & 21 deletions

File tree

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@ pip install diffdrrdata
2323

2424
## DiffDRR
2525

26-
`DiffDRR` is an differentiable X-ray renderer used for solving inverse
27-
problems in tomographic imaging. If you find
28-
[`DiffDRR`](https://github.com/eigenvivek/DiffDRR/) useful in your work,
29-
please cite our paper:
26+
[`DiffDRR`](https://github.com/eigenvivek/DiffDRR/) is an differentiable
27+
X-ray renderer used for solving inverse problems in tomographic imaging.
28+
If you find `DiffDRR` useful in your work, please cite our paper:
3029

3130
@inproceedings{gopalakrishnan2022fast,
3231
title={Fast auto-differentiable digitally reconstructed radiographs for solving inverse problems in intraoperative imaging},
@@ -42,16 +41,17 @@ please cite our paper:
4241
We provide APIs to load the following open-source datasets into
4342
`DiffDRR`:
4443

45-
| **Dataset** | **Anatomy** | **\# of Subjects** | **\# of 2D Images** | **CTs** | **X-rays** | Fiducials |
46-
|----------------------------------------------------------------------------|------------------|:------------------:|:-------------------:|:-------:|:----------:|:---------:|
47-
| [`DeepFluoro`](https://github.com/rg2/DeepFluoroLabeling-IPCAI2020) | pelvis | 6 | 366 ||| |
48-
| [`Ljubljana`](https://lit.fe.uni-lj.si/en/research/resources/3D-2D-GS-CA/) | neurovasculature | 10 | 20 ||| |
44+
| **Dataset** | **Anatomy** | **\# of Subjects** | **\# of 2D Images** | **CTs** | **X-rays** | **GT Fiducials** |
45+
|----------------------------------------------------------------------------|------------------|:------------------:|:-------------------:|:-------:|:----------:|:----------------:|
46+
| [`DeepFluoro`](https://github.com/rg2/DeepFluoroLabeling-IPCAI2020) | pelvis | 6 | 366 ||| |
47+
| [`Ljubljana`](https://lit.fe.uni-lj.si/en/research/resources/3D-2D-GS-CA/) | neurovasculature | 10 | 20 ||| |
4948

5049
If you use any of these datasets, please cite the original papers.
5150

5251
### `DeepFluoro`
5352

54-
`DeepFluoro` ([**Grupp et al.,
53+
[`DeepFluoro`](https://github.com/rg2/DeepFluoroLabeling-IPCAI2020)
54+
([**Grupp et al.,
5555
2020**](https://link.springer.com/article/10.1007/s11548-020-02162-7))
5656
provides paired X-ray fluoroscopy images and CT volume of the pelvis.
5757
The data were collected from six cadaveric subjects at John Hopkins
@@ -105,7 +105,8 @@ plt.show()
105105

106106
### `Ljubljana`
107107

108-
`Ljubljana` (**[Mitrovic et al.,
108+
[`Ljubljana`](https://lit.fe.uni-lj.si/en/research/resources/3D-2D-GS-CA/)
109+
(**[Mitrovic et al.,
109110
2013](https://ieeexplore.ieee.org/abstract/document/6507588)**) provides
110111
paired 2D/3D digital subtraction angiography (DSA) images. The data were
111112
collected from 10 patients undergoing endovascular image-guided
-447 Bytes
Loading
343 Bytes
Loading
-447 Bytes
Loading
343 Bytes
Loading

notebooks/index.ipynb

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"source": [
3838
"## DiffDRR\n",
3939
"\n",
40-
"`DiffDRR` is an differentiable X-ray renderer used for solving inverse problems in tomographic imaging.\n",
41-
"If you find [`DiffDRR`](https://github.com/eigenvivek/DiffDRR/) useful in your work, please cite our paper:\n",
40+
"[`DiffDRR`](https://github.com/eigenvivek/DiffDRR/) is an differentiable X-ray renderer used for solving inverse problems in tomographic imaging.\n",
41+
"If you find `DiffDRR` useful in your work, please cite our paper:\n",
4242
"\n",
4343
"```\n",
4444
"@inproceedings{gopalakrishnan2022fast,\n",
@@ -60,7 +60,7 @@
6060
"\n",
6161
"We provide APIs to load the following open-source datasets into `DiffDRR`:\n",
6262
"\n",
63-
"| **Dataset** | **Anatomy** | **\\# of Subjects** | **\\# of 2D Images** | **CTs** | **X-rays** | Fiducials |\n",
63+
"| **Dataset** | **Anatomy** | **\\# of Subjects** | **\\# of 2D Images** | **CTs** | **X-rays** | **GT Fiducials** |\n",
6464
"|----------------------------------------------------------------------------|--------------------|:------------------:|:-------------------:|:-------:|:----------:|:---------:|\n",
6565
"| [`DeepFluoro`](https://github.com/rg2/DeepFluoroLabeling-IPCAI2020) | pelvis | 6 | 366 | ✅ | ✅ | ❌ |\n",
6666
"| [`Ljubljana`](https://lit.fe.uni-lj.si/en/research/resources/3D-2D-GS-CA/) | neurovasculature | 10 | 20 | ✅ | ✅ | ✅ |\n",
@@ -75,13 +75,8 @@
7575
"source": [
7676
"### `DeepFluoro`\n",
7777
"\n",
78-
"`DeepFluoro` ([**Grupp et al., 2020**](https://link.springer.com/article/10.1007/s11548-020-02162-7)) provides paired X-ray fluoroscopy images and CT volume of the pelvis. The data were collected from six cadaveric subjects at John Hopkins University. Ground truth camera poses were estimated with an offline registration process. A visualization of the X-ray / CT pairs in the `DeepFluoro` dataset is available [here](https://vivekg.dev/DiffDRR-Datasets/deepfluoro_camera_poses.html)."
79-
]
80-
},
81-
{
82-
"cell_type": "markdown",
83-
"metadata": {},
84-
"source": [
78+
"[`DeepFluoro`](https://github.com/rg2/DeepFluoroLabeling-IPCAI2020) ([**Grupp et al., 2020**](https://link.springer.com/article/10.1007/s11548-020-02162-7)) provides paired X-ray fluoroscopy images and CT volume of the pelvis. The data were collected from six cadaveric subjects at John Hopkins University. Ground truth camera poses were estimated with an offline registration process. A visualization of the X-ray / CT pairs in the `DeepFluoro` dataset is available [here](https://vivekg.dev/DiffDRR-Datasets/deepfluoro_camera_poses.html).\n",
79+
"\n",
8580
"```\n",
8681
"@article{grupp2020automatic,\n",
8782
" title={Automatic annotation of hip anatomy in fluoroscopy for robust and efficient 2D/3D registration},\n",
@@ -149,7 +144,7 @@
149144
"source": [
150145
"### `Ljubljana`\n",
151146
"\n",
152-
"`Ljubljana` (**[Mitrovic et al., 2013](https://ieeexplore.ieee.org/abstract/document/6507588)**) provides paired 2D/3D digital subtraction angiography (DSA) images. The data were collected from 10 patients undergoing endovascular image-guided interventions at the University of Ljubljana. Ground truth camera poses were estimated by registering surface fiducial markers.\n",
147+
"[`Ljubljana`](https://lit.fe.uni-lj.si/en/research/resources/3D-2D-GS-CA/) (**[Mitrovic et al., 2013](https://ieeexplore.ieee.org/abstract/document/6507588)**) provides paired 2D/3D digital subtraction angiography (DSA) images. The data were collected from 10 patients undergoing endovascular image-guided interventions at the University of Ljubljana. Ground truth camera poses were estimated by registering surface fiducial markers.\n",
153148
"\n",
154149
"```\n",
155150
"@article{pernus20133d,\n",

0 commit comments

Comments
 (0)