| 138 | } |
| 139 | |
| 140 | Tensor 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 | |
| 147 | ImageBatchVarShape InpaintVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, ImageBatchVarShape &masks, |
| 148 | double inpaintRadius, std::optional<Stream> pstream) |
nothing calls this directly
no test coverage detected