Examples of FeatureDefinition


Examples of org.vocvark.DataTypes.FeatureDefinition

     * Basic constructor that sets dependencies, definition, and offsets.
     */
    public HarmonicSpectralFlux() {
        String name = "Partial Based Spectral Flux";
        String description = "Cacluate the correlation bettween adjacent frames based peaks instead of spectral bins.  Peak tracking is primitive - whe the number of bins changes, the bottom bins are matched sequentially and the extra unmatched bins are ignored.";
        definition = new FeatureDefinition(name, description, true, 1);
        dependencies = new String[]{"Peak Detection", "Peak Detection"};
        offsets = new int[]{0, -1};
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.