Table of Contents

Class PoseIdentity

Namespace
Bonsai.Sleap
Assembly
Bonsai.Sleap.dll

Represents the result of identity estimation as a collection of body parts and a predicted pose identity.

public class PoseIdentity : Pose, IList<BodyPart>, ICollection<BodyPart>, IList, ICollection, IReadOnlyList<BodyPart>, IReadOnlyCollection<BodyPart>, IEnumerable<BodyPart>, IEnumerable
Inheritance
PoseIdentity
Implements
Inherited Members

Constructors

PoseIdentity(IplImage, IModelInfo)

Initializes a new instance of the PoseIdentity class extracted from the specified image.

public PoseIdentity(IplImage image, IModelInfo model)

Parameters

image IplImage

The image from which the pose identity was extracted.

model IModelInfo

Information about the model used to extract the pose identity.

Properties

Confidence

Gets or sets the maximum likelihood confidence score for the predicted identity.

public float Confidence { get; set; }

Property Value

float

Identity

Gets or sets the maximum likelihood predicted pose identity.

public string Identity { get; set; }

Property Value

string

IdentityIndex

Gets or sets the maximum likelihood predicted pose identity index.

public int IdentityIndex { get; set; }

Property Value

int

IdentityScores

Gets or sets the predicted identity confidence scores for this instance.

public float[] IdentityScores { get; set; }

Property Value

float[]