Method Process
Process(IObservable<IplImage[]>)
Performs markerless, single instance, batched pose estimation for each array of images in an observable sequence using a SLEAP model.
public IObservable<IList<Pose>> Process(IObservable<IplImage[]> source)
Parameters
source
IObservable<IplImage[]>The sequence of image batches from which to extract the poses.
Returns
- IObservable<IList<Pose>>
A sequence of Pose collection objects representing the results of pose estimation for each image batch in the
source
sequence.
Process(IObservable<IplImage>)
Performs markerless, single instance, pose estimation for each image in an observable sequence using a SLEAP model.
public override IObservable<Pose> Process(IObservable<IplImage> source)
Parameters
source
IObservable<IplImage>The sequence of images from which to extract the pose.
Returns
- IObservable<Pose>
A sequence of Pose objects representing the result of pose estimation for each image in the
source
sequence.