Skip to content

Commit

Permalink
Implemented VoxelMorph (Project-MONAI#7178)
Browse files Browse the repository at this point in the history
Fixes Project-MONAI#5484.

### Description

Implemented VoxelMorph and added some docstrings. Checked coding style
locally.

### Types of changes
<!--- Put an `x` in all the boxes that apply, and remove the not
applicable items -->
- [x] Non-breaking change (fix or new feature that would not break
existing functionality).
- [ ] Breaking change (fix or new feature that would cause existing
functionality to change).
- [x] New tests added to cover the changes.
- [ ] Integration tests passed locally by running `./runtests.sh -f -u
--net --coverage`.
- [ ] Quick tests passed locally by running `./runtests.sh --quick
--unittests --disttests`.
- [x] In-line docstrings updated.
- [x] Documentation updated, tested `make html` command in the `docs/`
folder.

---------

Signed-off-by: kaibo <[email protected]>
Signed-off-by: Yu0610 <[email protected]>
  • Loading branch information
kvttt authored and Yu0610 committed Apr 11, 2024
1 parent 32bb745 commit 5d8b5fb
Show file tree
Hide file tree
Showing 4 changed files with 775 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/source/networks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,18 @@ Nets
.. autoclass:: Quicknat
:members:

`VoxelMorph`
~~~~~~~~~~~~
.. autoclass:: VoxelMorphUNet
:members:

.. autoclass:: voxelmorphunet
:members:

.. autoclass:: VoxelMorph
:members:

.. autoclass:: voxelmorph

Utilities
---------
Expand Down
1 change: 1 addition & 0 deletions monai/networks/nets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,4 @@
from .vit import ViT
from .vitautoenc import ViTAutoEnc
from .vnet import VNet
from .voxelmorph import VoxelMorph, VoxelMorphUNet
Loading

0 comments on commit 5d8b5fb

Please sign in to comment.