comparison modules-and-plug-ins/python-module/btrack_python_module.cpp @ 59:ba3fc238ccad

Renamed many variables, functions and arguments so they have more sensible names. Also removed an apparently redundant variable in OnsetDetectionFunction called wframe
author Adam Stark <adamstark@users.noreply.github.com>
date Fri, 24 Jan 2014 21:45:55 +0000
parents 296af6af6c3d
children deb49a2590f3
comparison
equal deleted inserted replaced
58:f84ccd07e17f 59:ba3fc238ccad
57 for (int n = 0;n < hopSize;n++) 57 for (int n = 0;n < hopSize;n++)
58 { 58 {
59 buffer[n] = data[(i*hopSize)+n]; 59 buffer[n] = data[(i*hopSize)+n];
60 } 60 }
61 61
62 df[i] = onset.getDFsample(buffer); 62 df[i] = onset.calculateOnsetDetectionFunctionSample(buffer);
63 63
64 } 64 }
65 65
66 ///////// End Processing Loop ///////////// 66 ///////// End Processing Loop /////////////
67 /////////////////////////////////////////// 67 ///////////////////////////////////////////