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