| 204 | } |
| 205 | |
| 206 | Tensor PillowResize(Tensor &input, const Shape &out_shape, nvcv::ImageFormat format, NVCVInterpolationType interp, |
| 207 | std::optional<Stream> pstream) |
| 208 | { |
| 209 | Tensor output = Tensor::Create(out_shape, input.dtype(), input.layout()); |
| 210 | |
| 211 | return PillowResizeInto(output, input, format, interp, pstream); |
| 212 | } |
| 213 | |
| 214 | ImageBatchVarShape VarShapePillowResizeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, |
| 215 | NVCVInterpolationType interpolation, std::optional<Stream> pstream) |
nothing calls this directly
no test coverage detected