| 261 | } |
| 262 | |
| 263 | TupleTensor6 MinMaxLocVarShape(ImageBatchVarShape &input, int maxLocs, std::optional<Stream> pstream) |
| 264 | { |
| 265 | maxLocs = maxLocs == 0 ? GetDefaultMaxLocs(input.maxSize().w, input.maxSize().h) : maxLocs; |
| 266 | |
| 267 | return MinMaxLoc(input, input.uniqueFormat().planeDataType(0), input.numImages(), maxLocs, pstream); |
| 268 | } |
| 269 | |
| 270 | // Function to get the docstring for an entry function |
| 271 |
nothing calls this directly
no test coverage detected