| 46 | } |
| 47 | |
| 48 | Tensor BndBox(Tensor &input, NVCVBndBoxesI bboxes, std::optional<Stream> pstream) |
| 49 | { |
| 50 | Tensor output = Tensor::Create(input.shape(), input.dtype()); |
| 51 | |
| 52 | return BndBoxInto(output, input, bboxes, pstream); |
| 53 | } |
| 54 | |
| 55 | } // namespace |
| 56 |
nothing calls this directly
no test coverage detected