Interface ISignalToImage
Interface for converting signal represented by bytes into an image.
Namespace: AudioAnalysisTools
Assembly: AudioAnalysisTools.dll
Syntax
public interface ISignalToImage
Methods
| Improve this Doc View SourceSpectrogram(Byte[])
Generate a Spectrogram.
Declaration
Image<Rgb24> Spectrogram(byte[] bytes)
Parameters
Type | Name | Description |
---|---|---|
Byte[] | bytes | The bytes. |
Returns
Type | Description |
---|---|
Six |
Spectrogram image. |
Waveform(Byte[], Int32, Int32)
Generate a Waveform.
Declaration
Image<Rgb24> Waveform(byte[] bytes, int width, int height)
Parameters
Returns
Type | Description |
---|---|
Six |
Waveform image. |