MCPcopy Create free account
hub / github.com/CVCUDA/CV-CUDA / MinLocVarShape

Function MinLocVarShape

python/mod_cvcuda/operators/OpMinMaxLoc.cpp:194–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

192}
193
194TupleTensor3 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
201template<class InputContainer>
202TupleTensor3 MaxLoc(InputContainer &input, nvcv::DataType inDataType, int numSamples, int maxLocs,

Callers

nothing calls this directly

Calls 6

GetDefaultMaxLocsFunction · 0.85
MinLocFunction · 0.85
maxSizeMethod · 0.45
planeDataTypeMethod · 0.45
uniqueFormatMethod · 0.45
numImagesMethod · 0.45

Tested by

no test coverage detected