Skip to content

Commit

Permalink
Implemented VoxelMorph (#7178)
Browse files Browse the repository at this point in the history
Fixes #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 <ktang@unc.edu>
  • Loading branch information
kvttt authored Nov 3, 2023
1 parent 4847df2 commit fbbb64b
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 fbbb64b

Please sign in to comment.