Class GetMaximumConfidencePoseIdentity
Represents an operator that returns the pose with the highest identity confidence for each collection in the sequence, using the optional class label.
[WorkflowElementCategory(ElementCategory.Transform)]
public class GetMaximumConfidencePoseIdentity : Transform<PoseIdentityCollection, PoseIdentity>
- Inheritance
-
GetMaximumConfidencePoseIdentity
- Inherited Members
Properties
Identity
Gets or sets the optional class label used to filter the pose collection.
public string Identity { get; set; }
Property Value
Methods
Process(IObservable<PoseIdentityCollection>)
Returns the pose with the highest identity confidence for each pose collection in an observable sequence, using the optional class label.
public override IObservable<PoseIdentity> Process(IObservable<PoseIdentityCollection> source)
Parameters
source
IObservable<PoseIdentityCollection>The sequence of identified poses for which to extract the identity with highest confidence score.
Returns
- IObservable<PoseIdentity>
A sequence of the poses with highest identity confidence for each pose collection in the
source
sequence.