diff dsp/chromagram/ConstantQ.h @ 20:8bdbda7fb893

* First cut at properly integrating the segmenter and making it work right
author cannam
date Wed, 09 Jan 2008 16:50:04 +0000
parents 2e3f5d2d62c1
children 8bb764969d50
line wrap: on
line diff
--- a/dsp/chromagram/ConstantQ.h	Wed Jan 09 10:48:08 2008 +0000
+++ b/dsp/chromagram/ConstantQ.h	Wed Jan 09 16:50:04 2008 +0000
@@ -16,11 +16,11 @@
 #include "maths/MathUtilities.h"
 
 struct CQConfig{
-    unsigned int FS;
-    double min;
-    double max;
-    unsigned int BPO;
-    double CQThresh;
+    unsigned int FS;   // samplerate
+    double min;        // minimum frequency
+    double max;        // maximum frequency
+    unsigned int BPO;  // bins per octave
+    double CQThresh;   // threshold
 };
 
 class ConstantQ {