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 |
---|---|
SixLabors.ImageSharp.Image<SixLabors.ImageSharp.PixelFormats.Rgb24> | Spectrogram image. |
Waveform(Byte[], Int32, Int32)
Generate a Waveform.
Declaration
Image<Rgb24> Waveform(byte[] bytes, int width, int height)
Parameters
Type | Name | Description |
---|---|---|
Byte[] | bytes | The bytes. |
Int32 | width | The width. |
Int32 | height | The height. |
Returns
Type | Description |
---|---|
SixLabors.ImageSharp.Image<SixLabors.ImageSharp.PixelFormats.Rgb24> | Waveform image. |