Interface IBatchDetections<T>

Namespace
NT2I.ONNX.Abstractions.Interfaces.Yolo
Assembly
NT2I.ONNX.Abstractions.dll

Définit le contrat pour la sortie d'un batch de détection, donnant accès aux détections par image.

public interface IBatchDetections<T> where T : unmanaged

Type Parameters

T

Properties

BatchSize

Obtient la taille du batch (nombre d'images).

int BatchSize { get; }

Property Value

int

this[int]

Obtient la collection de détections pour une image spécifique du batch.

IImageDetections<T> this[int batchIndex] { get; }

Parameters

batchIndex int

Property Value

IImageDetections<T>