Mercurial > hg > silvet
comparison src/Silvet.cpp @ 75:78a7bf247016 timing
Remove FCQ return as well
author | Chris Cannam |
---|---|
date | Tue, 06 May 2014 11:13:25 +0100 |
parents | 7133f78ccbf6 |
children | f3bf6503e6c6 |
comparison
equal
deleted
inserted
replaced
74:7133f78ccbf6 | 75:78a7bf247016 |
---|---|
372 Silvet::transcribe(const Grid &cqout) | 372 Silvet::transcribe(const Grid &cqout) |
373 { | 373 { |
374 Grid filtered = preProcess(cqout); | 374 Grid filtered = preProcess(cqout); |
375 | 375 |
376 FeatureSet fs; | 376 FeatureSet fs; |
377 | 377 /* |
378 for (int i = 0; i < (int)filtered.size(); ++i) { | 378 for (int i = 0; i < (int)filtered.size(); ++i) { |
379 Feature f; | 379 Feature f; |
380 for (int j = 0; j < processingHeight; ++j) { | 380 for (int j = 0; j < processingHeight; ++j) { |
381 f.values.push_back(float(filtered[i][j])); | 381 f.values.push_back(float(filtered[i][j])); |
382 } | 382 } |
383 fs[m_fcqOutputNo].push_back(f); | 383 fs[m_fcqOutputNo].push_back(f); |
384 } | 384 } |
385 */ | |
385 | 386 |
386 int width = filtered.size(); | 387 int width = filtered.size(); |
387 | 388 |
388 int iterations = 12; | 389 int iterations = 12; |
389 | 390 |