Interface IDetector
public interface IDetector : IAsyncDisposable
- Inherited Members
Methods
GetDetections(CancellationToken)
Continously get detections from the device
await foreach (var detections in detector.GetDetections(cancellationToken))
{
Console.WriteLine("Num detections: " + detections.Count());
}
IAsyncEnumerable<Detections> GetDetections(CancellationToken ct = default)