public class F0Tracker extends AbstractWAVAnalyzer
コンストラクタと説明 |
---|
F0Tracker() |
修飾子とタイプ | メソッドと説明 |
---|---|
protected java.lang.String |
getAmusaXMLFormat()
Please override this method so that this returns "array" or "peaks"
|
protected ModuleConnection[] |
getModuleConnections()
Please override this method to specify the connections between
modules described in the getUsedModules() method.
|
protected OutputData[] |
getOutputData()
Please override this method to specify what data should be
output to a file.
|
protected ProducerConsumerCompatible[] |
getUsedModules()
Please override this method so that this returns the list of
modules (typically subclasses of SPModule) used in this class.
|
static void |
main(java.lang.String[] args) |
protected boolean |
setOptionsLocal(java.lang.String option,
java.lang.String value)
Please override this method to support non-yes/no options in
your subclass.
|
customSetting, getParam, getParamDouble, getParamInt, getWindowSlider, preproc, readInputData, requiredFiles, run, setBoolOptionsLocal, setParam, setParam, setParam, usesStereo
addOptionHelpMessage, exitWithMessage, getBaseName, getBaseName, getConfigXMLWrapper, getDestDir, getHelpMessage, getOutFileName, getVersion, init, loopEnabled, postproc, removeDirName, removeExt, removeExt, run, showErrorMessage, start, start
protected java.lang.String getAmusaXMLFormat()
AbstractWAVAnalyzer
getAmusaXMLFormat
クラス内 AbstractWAVAnalyzer
protected ModuleConnection[] getModuleConnections()
AbstractWAVAnalyzer
protected ModuleConnection[] getModuleConnections() { return new ModuleConnection[] { new ModuleConnection(stft, 0, peakext, 0); }; }
getModuleConnections
クラス内 AbstractWAVAnalyzer
protected OutputData[] getOutputData()
AbstractWAVAnalyzer
getOutputData
クラス内 AbstractWAVAnalyzer
protected ProducerConsumerCompatible[] getUsedModules()
AbstractWAVAnalyzer
private ProducerConsumerCompatible stft, peakext; protected abstractProducerConsumerCompatible[] getUsedModules() { return new ProducerConsumerCompatible[] { stft = new STFT(), peakext = new PeakExtractor() }; }
getUsedModules
クラス内 AbstractWAVAnalyzer
public static void main(java.lang.String[] args)
protected boolean setOptionsLocal(java.lang.String option, java.lang.String value)
CMXCommand
Please override this method to support non-yes/no options in your subclass.
サブクラスで独自の非YES/NO型オプションをサポートする場合には, このメソッドをオーバーライドしてください. このメソッドがオプションを受け入れたらtrue, 受け入れなかったらfalseを返さなければなりません.
setOptionsLocal
クラス内 AbstractWAVAnalyzer