Skip to content
Merged
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
16 changes: 16 additions & 0 deletions docs/source/transforms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,14 @@ Smooth Field
:members:
:special-members: __call__

`RandSmoothDeform`
""""""""""""""""""
.. image:: https://github.com/Project-MONAI/DocImages/raw/main/transforms/RandSmoothDeform.png
:alt: example of RandSmoothDeform
.. autoclass:: RandSmoothDeform
:members:
:special-members: __call__

Utility
^^^^^^^

Expand Down Expand Up @@ -1553,6 +1561,14 @@ Smooth Field (Dict)
:members:
:special-members: __call__

`RandSmoothDeformd`
"""""""""""""""""""
.. image:: https://github.com/Project-MONAI/DocImages/raw/main/transforms/RandSmoothDeformd.png
:alt: example of RandSmoothDeformd
.. autoclass:: RandSmoothDeformd
:members:
:special-members: __call__

Utility (Dict)
^^^^^^^^^^^^^^

Expand Down
9 changes: 7 additions & 2 deletions monai/transforms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,13 @@
VoteEnsembled,
VoteEnsembleDict,
)
from .smooth_field.array import RandSmoothFieldAdjustContrast, RandSmoothFieldAdjustIntensity, SmoothField
from .smooth_field.dictionary import RandSmoothFieldAdjustContrastd, RandSmoothFieldAdjustIntensityd
from .smooth_field.array import (
RandSmoothDeform,
RandSmoothFieldAdjustContrast,
RandSmoothFieldAdjustIntensity,
SmoothField,
)
from .smooth_field.dictionary import RandSmoothDeformd, RandSmoothFieldAdjustContrastd, RandSmoothFieldAdjustIntensityd
from .spatial.array import (
Affine,
AffineGrid,
Expand Down
Loading