Table of Contents

Class LocalizationResult<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Result of sound localization.

public class LocalizationResult<T>

Type Parameters

T

The 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

double

NumSources

Gets or sets the number of detected sources.

public int NumSources { get; }

Property Value

int

Sources

Gets or sets detected sound sources.

public IReadOnlyList<SoundSource<T>> Sources { get; set; }

Property Value

IReadOnlyList<SoundSource<T>>