| 183 | } |
| 184 | |
| 185 | TupleTensor3 MinLocTensor(Tensor &input, int maxLocs, std::optional<Stream> pstream) |
| 186 | { |
| 187 | auto inAccess = nvcv::TensorDataAccessStridedImagePlanar::Create(input.exportData()); |
| 188 | |
| 189 | maxLocs = maxLocs == 0 ? GetDefaultMaxLocs(inAccess->numCols(), inAccess->numRows()) : maxLocs; |
| 190 | |
| 191 | return MinLoc(input, input.dtype(), inAccess->numSamples(), maxLocs, pstream); |
| 192 | } |
| 193 | |
| 194 | TupleTensor3 MinLocVarShape(ImageBatchVarShape &input, int maxLocs, std::optional<Stream> pstream) |
| 195 | { |
nothing calls this directly
no test coverage detected