| 54 | } |
| 55 | |
| 56 | Tensor Rotate(Tensor &input, double angleDeg, const std::tuple<double, double> &shift, |
| 57 | const NVCVInterpolationType interpolation, std::optional<Stream> pstream) |
| 58 | { |
| 59 | Tensor output = Tensor::Create(input.shape(), input.dtype()); |
| 60 | |
| 61 | return RotateInto(output, input, angleDeg, shift, interpolation, pstream); |
| 62 | } |
| 63 | |
| 64 | ImageBatchVarShape VarShapeRotateInto(ImageBatchVarShape &output, ImageBatchVarShape &input, Tensor &angleDeg, |
| 65 | Tensor &shift, NVCVInterpolationType interpolation, std::optional<Stream> pstream) |
nothing calls this directly
no test coverage detected