Class SoundTrackingResult<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Result of sound source tracking over time.
public class SoundTrackingResult<T>
Type Parameters
TThe 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
NumSourcesTracked
Gets or sets the number of unique sources tracked.
public int NumSourcesTracked { get; set; }
Property Value
Trajectories
Gets or sets tracked source trajectories.
public IReadOnlyList<SourceTrajectory<T>> Trajectories { get; set; }