MCPcopy Create free account
hub / github.com/Project-MONAI/MONAI / applied_operations

Method applied_operations

monai/data/meta_obj.py:190–194  ·  view source on GitHub ↗

Get the applied operations. Defaults to ``[]``.

(self)

Source from the content-addressed store, hash-verified

188
189 @property
190 def applied_operations(self) -> list[dict]:
191 """Get the applied operations. Defaults to ``[]``."""
192 if hasattr(self, "_applied_operations"):
193 return self._applied_operations
194 return MetaObj.get_default_applied_operations()
195
196 @applied_operations.setter
197 def applied_operations(self, t) -> None:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected