Table of Contents

Class SoundTrackingResult<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Result of sound source tracking over time.

public class SoundTrackingResult<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
SoundTrackingResult<T>
Inherited Members

Properties

Duration

Gets or sets the total duration tracked.

public double Duration { get; set; }

Property Value

double

NumSourcesTracked

Gets or sets the number of unique sources tracked.

public int NumSourcesTracked { get; set; }

Property Value

int

Trajectories

Gets or sets tracked source trajectories.

public IReadOnlyList<SourceTrajectory<T>> Trajectories { get; set; }

Property Value

IReadOnlyList<SourceTrajectory<T>>