C# 클래스 Accord.Audio.Filters.ExtractChannel

Extracts specified channel of a multiple-channel signal and returns it as a mono signal.
상속: BaseFilter
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
ExtractChannel ( int channel ) : System

Creates a new ExtractChannel filter.

보호된 메소드들

메소드 설명
NewSignal ( int channels, int samples, int rate, SampleFormat dstSampleFormat ) : Signal

Creates a new signal from the given signal parameters. This method can be overridden on child classes to modify how output signals are created.

ProcessFilter ( Signal sourceData, Signal destinationData ) : void

Processes the filter.

메소드 상세

ExtractChannel() 공개 메소드

Creates a new ExtractChannel filter.
public ExtractChannel ( int channel ) : System
channel int The index of the channel to be extracted.
리턴 System

NewSignal() 보호된 메소드

Creates a new signal from the given signal parameters. This method can be overridden on child classes to modify how output signals are created.
protected NewSignal ( int channels, int samples, int rate, SampleFormat dstSampleFormat ) : Signal
channels int
samples int
rate int
dstSampleFormat SampleFormat
리턴 Signal

ProcessFilter() 보호된 메소드

Processes the filter.
protected ProcessFilter ( Signal sourceData, Signal destinationData ) : void
sourceData Signal
destinationData Signal
리턴 void