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

Method _rot90_template

monai/utils/ordering.py:137–142  ·  view source on GitHub ↗
(self, template: np.ndarray)

Source from the content-addressed store, hash-verified

135 return template
136
137 def _rot90_template(self, template: np.ndarray) -> np.ndarray:
138 if self.rot90_axes is not None:
139 for axes in self.rot90_axes:
140 template = np.rot90(template, axes=axes)
141
142 return template
143
144 def _order_template(self, template: np.ndarray) -> np.ndarray:
145 depths = None

Callers 1

_transform_templateMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected