Interface ISAMAnnotationSet

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

Définit le contrat pour un ensemble d'annotations (points et labels) pour un objet à segmenter.

public interface ISAMAnnotationSet

Properties

Labels

Obtient la liste des labels correspondant à chaque point.

IReadOnlyList<float> Labels { get; }

Property Value

IReadOnlyList<float>

Points

Obtient la liste des coordonnées des points, aplaties (ex: [x1, y1, x2, y2, ...]).

IReadOnlyList<float> Points { get; }

Property Value

IReadOnlyList<float>