| 225 | } |
| 226 | |
| 227 | TupleTensor3 MaxLocVarShape(ImageBatchVarShape &input, int maxLocs, std::optional<Stream> pstream) |
| 228 | { |
| 229 | maxLocs = maxLocs == 0 ? GetDefaultMaxLocs(input.maxSize().w, input.maxSize().h) : maxLocs; |
| 230 | |
| 231 | return MaxLoc(input, input.uniqueFormat().planeDataType(0), input.numImages(), maxLocs, pstream); |
| 232 | } |
| 233 | |
| 234 | template<class InputContainer> |
| 235 | TupleTensor6 MinMaxLoc(InputContainer &input, nvcv::DataType inDataType, int numSamples, int maxLocs, |
nothing calls this directly
no test coverage detected