Please use. NET 5,. NET 6, NET 7,. NET 8, NET Framework 4.6, NET Framework 4.61, NET Framework 4.7, NET Framework 4.72, NET Framework 4.8, NET Framework 4.81, and. NET Core 3.1 versions

ResultTindex_of(T, Int32, Int32) Method

Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the inference results that starts at the specified index and contains the specified number of elements.

Definition

Namespace: OpenVinoSharp.Extensions.result
Assemblies:  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
C#
public int index_of(
	T item,
	int index,
	int count
)

Parameters

item  T
The object to locate in the inference results. The value can be null for reference types.
index  Int32
The zero-based starting index of the search. 0 (zero) is valid in an empty list.
count  Int32
The number of elements in the section to search.

Return Value

Int32
The zero-based index of the first occurrence of item within the range of elements in the inference results that starts at index and contains count number of elements, if found; otherwise, -1.

See Also