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

Function Inpaint

python/mod_cvcuda/operators/OpInpaint.cpp:140–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140Tensor Inpaint(Tensor &input, Tensor &masks, double inpaintRadius, std::optional<Stream> pstream)
141{
142 Tensor output = Tensor::Create(input.shape(), input.dtype());
143
144 return InpaintInto(output, input, masks, inpaintRadius, pstream);
145}
146
147ImageBatchVarShape InpaintVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, ImageBatchVarShape &masks,
148 double inpaintRadius, std::optional<Stream> pstream)

Callers

nothing calls this directly

Calls 3

InpaintIntoFunction · 0.85
shapeMethod · 0.45
dtypeMethod · 0.45

Tested by

no test coverage detected