MCPcopy Create free account
hub / github.com/CVCUDA/CV-CUDA / Gaussian

Function Gaussian

python/mod_cvcuda/operators/OpGaussian.cpp:58–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58Tensor 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
66ImageBatchVarShape VarShapeGaussianInto(ImageBatchVarShape &output, ImageBatchVarShape &input,
67 const std::tuple<int, int> &max_kernel_size, Tensor &ksize, Tensor &sigma,

Callers

nothing calls this directly

Calls 3

GaussianIntoFunction · 0.85
shapeMethod · 0.45
dtypeMethod · 0.45

Tested by

no test coverage detected