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

Function AverageBlur

python/mod_cvcuda/operators/OpAverageBlur.cpp:57–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57Tensor 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
65ImageBatchVarShape AverageBlurVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input,
66 const std::tuple<int, int> &max_kernel_size, Tensor &kernel_size,

Callers

nothing calls this directly

Calls 3

AverageBlurIntoFunction · 0.85
shapeMethod · 0.45
dtypeMethod · 0.45

Tested by

no test coverage detected