Class PitchFrame<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Represents a single pitch detection frame.
public class PitchFrame<T>
Type Parameters
TThe numeric type.
- Inheritance
-
PitchFrame<T>
- Inherited Members
Properties
Confidence
Gets the detection confidence (0-1).
public required T Confidence { get; init; }
Property Value
- T
IsVoiced
Gets whether this frame is voiced (contains pitched content).
public required bool IsVoiced { get; init; }
Property Value
Pitch
Gets the detected pitch in Hz.
public required T Pitch { get; init; }
Property Value
- T
Time
Gets the timestamp in seconds.
public required double Time { get; init; }