Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move ConstrICON code into ICON #74

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ jobs:
max-parallel: 5

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
pip install -U pip
pip install -r requirements.txt

pip install -e .
Expand All @@ -32,6 +33,6 @@ jobs:
- name: Build docs
working-directory: docs
run: |
pip install sphinx sphinx-rtd-theme monai
pip install sphinx sphinx-rtd-theme monai sphinx-tabs
make clean
make html SPHINXOPTS="-W --keep-going"
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ build:

jobs:
post_install:
- pip install monai sphinx-rtd-theme
- pip install monai sphinx-rtd-theme sphinx-tabs
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/source/conf.py
Expand Down
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ _ICCV 2021_ https://arxiv.org/abs/2105.04459
Lin Tian, Hastings Greer, Francois-Xavier Vialard, Roland Kwitt, Raúl San José Estépar, Marc Niethammer.
_CVPR 2023_ https://arxiv.org/abs/2206.05897

**Inverse Consistency by Construction for Multistep Deep Registration.**
Hastings Greer, Lin Tian, Francois-Xavier Vialard, Roland Kwitt, Sylvain Bouix, Raul San Jose Estepar, Richard Rushmore and Marc Niethammer.
_MICCAI 2023_ https://arxiv.org/abs/2305.00087

## Cite this work
```
@InProceedings{Greer_2021_ICCV,
Expand All @@ -38,6 +42,18 @@ _CVPR 2023_ https://arxiv.org/abs/2206.05897
year={2022}
}
```
```
@misc{greer2023inverseconsistencyconstructionmultistep,
title={Inverse Consistency by Construction for Multistep Deep Registration},
author={Hastings Greer and Lin Tian and Francois-Xavier Vialard and Roland Kwitt and Sylvain Bouix and Raul San Jose Estepar and Richard Rushmore and Marc Niethammer},
year={2023},
eprint={2305.00087},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2305.00087},
}
```



## Video Presentation
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sphinx-tabs
Binary file added docs/source/_static/tensorboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"sphinx.ext.linkcode",
"sphinx.ext.mathjax",
"matplotlib.sphinxext.plot_directive",
"sphinx_tabs.tabs",
]

plot_html_show_source_link = False
Expand Down
Loading
Loading