Interface IFramingSubscriber
- Namespace
- Huddly.Sdk.FramingSubscribers
- Assembly
- Huddly.Sdk.dll
public interface IFramingSubscriber : IDisposable
- Inherited Members
Methods
GetFramings(CancellationToken)
Continously get framings from the device
await foreach (var framings in framingSubscriber.GetFramings(cancellationToken))
{
foreach (var bbox in framings.Bboxes)
{
Console.WriteLine(
$"X: {bbox.X} Y: {bbox.Y} Width: {bbox.Width} Height: {bbox.Height}"
);
}
}
IAsyncEnumerable<Framings> GetFramings(CancellationToken ct = default)