(self, template: np.ndarray)
| 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 |