Mercurial > hg > jvamp
view org/vamp_plugins/Feature.java @ 23:cc9c503535d1
add listPlugins, some docs
author | Chris Cannam |
---|---|
date | Wed, 14 Nov 2012 17:53:03 +0000 |
parents | 530bf5009ee2 |
children | f2914a92b553 |
line wrap: on
line source
package org.vamp_plugins; public class Feature { public boolean hasTimestamp; public RealTime timestamp; public boolean hasDuration; public RealTime duration; public float[] values; public String label; Feature() { hasTimestamp = false; hasDuration = false; } };