comparison transform/FeatureExtractionModelTransformer.cpp @ 789:84013dc0ed77

Remove some debug
author Chris Cannam
date Tue, 16 Apr 2013 15:20:57 +0100
parents 05ba4bbd2b87
children ebe3ca2bb556
comparison
equal deleted inserted replaced
785:05ba4bbd2b87 789:84013dc0ed77
713 QString label = feature.label.c_str(); 713 QString label = feature.label.c_str();
714 if (feature.values.size() > 1) { 714 if (feature.values.size() > 1) {
715 label = QString("[%1] %2").arg(i+1).arg(label); 715 label = QString("[%1] %2").arg(i+1).arg(label);
716 } 716 }
717 717
718 std::cerr << "Adding point at " << frame << " with value " << value << " and label " << label << std::endl;
719
720 model->addPoint(SparseTimeValueModel::Point(frame, value, label)); 718 model->addPoint(SparseTimeValueModel::Point(frame, value, label));
721 } 719 }
722 720
723 } else if (isOutput<NoteModel>() || isOutput<RegionModel>()) { 721 } else if (isOutput<NoteModel>() || isOutput<RegionModel>()) {
724 722