Mercurial > hg > qm-dsp
view dsp/segmentation/Segmenter.cpp @ 64:6cb2b3cd5356
* Refactor FFT a little bit so as to separate construction and processing
rather than have a single static method -- will make it easier to use a
different implementation
* pull in KissFFT implementation (not hooked up yet)
author | cannam |
---|---|
date | Wed, 13 May 2009 09:19:12 +0000 |
parents | 8e90a56b4b5f |
children | 67899fda84f5 |
line wrap: on
line source
/* * Segmenter.cpp * soundbite * * Created by Mark Levy on 04/04/2006. * Copyright 2006 Centre for Digital Music, Queen Mary, University of London. All rights reserved. * */ #include <iomanip> #include "Segmenter.h" ostream& operator<<(ostream& os, const Segmentation& s) { os << "structure_name : begin_time end_time\n"; for (int i = 0; i < s.segments.size(); i++) { Segment seg = s.segments[i]; os << std::fixed << seg.type << ':' << '\t' << std::setprecision(6) << seg.start / static_cast<double>(s.samplerate) << '\t' << std::setprecision(6) << seg.end / static_cast<double>(s.samplerate) << "\n"; } return os; }