RtdetrDetargmax Method
The function `argmax` takes an array of floats and returns the index of the maximum value in the
array.
Namespace: OpenVinoSharp.Extensions.modelAssemblies: OpenVINO_CSharp_API_Extensions_OpenCvSharp (in OpenVINO_CSharp_API_Extensions_OpenCvSharp.dll) Version: 1.0.6.1+a13b433d33f957705f82a74ca14fa17017145e92
OpenVINO_CSharp_API_Extensions_EmguCV (in OpenVINO_CSharp_API_Extensions_EmguCV.dll) Version: 1.0.6.1+a13b433d33f957705f82a74ca14fa17017145e92
private int argmax(
float[] data,
int length
)
- data Single
- An array of float values.
- length Int32
- The `length` parameter is the number of elements in the `data` array that
should be considered for finding the maximum value.
Int32
The method is returning the index of the maximum value in the given array.