| 55 | } |
| 56 | |
| 57 | Tensor AverageBlur(Tensor &input, const std::tuple<int, int> &kernel_size, const std::tuple<int, int> &kernel_anchor, |
| 58 | NVCVBorderType border, std::optional<Stream> pstream) |
| 59 | { |
| 60 | Tensor output = Tensor::Create(input.shape(), input.dtype()); |
| 61 | |
| 62 | return AverageBlurInto(output, input, kernel_size, kernel_anchor, border, pstream); |
| 63 | } |
| 64 | |
| 65 | ImageBatchVarShape AverageBlurVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, |
| 66 | const std::tuple<int, int> &max_kernel_size, Tensor &kernel_size, |
nothing calls this directly
no test coverage detected