| 73 | } |
| 74 | |
| 75 | Tensor WarpPerspective(Tensor &input, const pyarray &xform, const int32_t flags, const NVCVBorderType borderMode, |
| 76 | const pyarray &borderValue, std::optional<Stream> pstream) |
| 77 | { |
| 78 | Tensor output = Tensor::Create(input.shape(), input.dtype()); |
| 79 | |
| 80 | return WarpPerspectiveInto(output, input, xform, flags, borderMode, borderValue, pstream); |
| 81 | } |
| 82 | |
| 83 | ImageBatchVarShape WarpPerspectiveVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, Tensor &xform, |
| 84 | const int32_t flags, const NVCVBorderType borderMode, |
nothing calls this directly
no test coverage detected