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

ResultTcopy_to(Int32, T, Int32, Int32) Method

Copies a range of elements from the inference results to a compatible one-dimensional array, starting at the specified index of the target array.

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 void copy_to(
	int index,
	T[] array,
	int array_index,
	int count
)

Parameters

index  Int32
The zero-based index in the source inference results at which copying begins.
array  T
The one-dimensional System.Array that is the destination of the elements copied from inference results. The System.Array must have zero-based indexing.
array_index  Int32
The zero-based index in array at which copying begins.
count  Int32
The number of elements to copy.

See Also