Class LocalizationResult<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Result of sound localization.
public class LocalizationResult<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
LocalizationResult<T>
- Inherited Members
Properties
DominantSource
Gets or sets the dominant source (highest energy).
public SoundSource<T>? DominantSource { get; set; }
Property Value
- SoundSource<T>
Duration
Gets or sets the analysis duration in seconds.
public double Duration { get; set; }
Property Value
NumSources
Gets or sets the number of detected sources.
public int NumSources { get; }
Property Value
Sources
Gets or sets detected sound sources.
public IReadOnlyList<SoundSource<T>> Sources { get; set; }