| 192 | } |
| 193 | |
| 194 | TupleTensor3 MinLocVarShape(ImageBatchVarShape &input, int maxLocs, std::optional<Stream> pstream) |
| 195 | { |
| 196 | maxLocs = maxLocs == 0 ? GetDefaultMaxLocs(input.maxSize().w, input.maxSize().h) : maxLocs; |
| 197 | |
| 198 | return MinLoc(input, input.uniqueFormat().planeDataType(0), input.numImages(), maxLocs, pstream); |
| 199 | } |
| 200 | |
| 201 | template<class InputContainer> |
| 202 | TupleTensor3 MaxLoc(InputContainer &input, nvcv::DataType inDataType, int numSamples, int maxLocs, |
nothing calls this directly
no test coverage detected