| 69 | } |
| 70 | |
| 71 | Tensor Morphology(Tensor &input, NVCVMorphologyType morph_type, const std::tuple<int, int> &maskSize, |
| 72 | const std::tuple<int, int> &anchor, std::optional<Tensor> workspace, int32_t iteration, |
| 73 | NVCVBorderType border, std::optional<Stream> pstream) |
| 74 | { |
| 75 | Tensor output = Tensor::Create(input.shape(), input.dtype()); |
| 76 | |
| 77 | return MorphologyInto(output, input, morph_type, maskSize, anchor, workspace, iteration, border, pstream); |
| 78 | } |
| 79 | |
| 80 | ImageBatchVarShape MorphologyVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, |
| 81 | NVCVMorphologyType morph_type, Tensor &masks, Tensor &anchors, |
nothing calls this directly
no test coverage detected