Table of Contents

Interface IDetector

Namespace
Huddly.Sdk.Detectors
Assembly
Huddly.Sdk.dll
public interface IDetector : IAsyncDisposable
Inherited Members

Methods

GetDetections(CancellationToken)

Continously get detections from the device

Example use:

await foreach (var detections in detector.GetDetections(cancellationToken))
{
    Console.WriteLine("Num detections: " + detections.Count());
}

IAsyncEnumerable<Detections> GetDetections(CancellationToken ct = default)

Parameters

ct CancellationToken

Returns

IAsyncEnumerable<Detections>