reduceArgMax function
Finds indices of max elements along provided axis.
For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#gaa87ea34d99bcc5bf9695048355163da0
Implementation
Mat reduceArgMax(InputArray src, int axis, {OutputArray? dst, bool lastIndex = false}) {
dst ??= Mat.empty();
cvRun(() => ccore.Mat_ReduceArgMax(src.ref, dst!.ref, axis, lastIndex));
return dst;
}