(theta, **kwargs)
| 135 | return scale2d(1 / sx, 1 / sy, **kwargs) |
| 136 | |
| 137 | def rotate2d_inv(theta, **kwargs): |
| 138 | return rotate2d(-theta, **kwargs) |
| 139 | |
| 140 | # ---------------------------------------------------------------------------- |
| 141 | # Augmentation pipeline with deterministic replay capability. |