annotate dsp/segmentation/Segmenter.cpp @ 339:9c8ee77db9de
Tidy real-to-complex FFT -- forward and inverse have different arguments, so make them separate functions; document
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Wed, 02 Oct 2013 15:04:38 +0100 |
parents |
d5014ab8b0e5 |
children |
e4a57215ddee |
rev |
line source |
c@243
|
1 /*
|
c@243
|
2 * Segmenter.cpp
|
c@243
|
3 *
|
c@243
|
4 * Created by Mark Levy on 04/04/2006.
|
c@309
|
5 * Copyright 2006 Centre for Digital Music, Queen Mary, University of London.
|
c@309
|
6
|
c@309
|
7 This program is free software; you can redistribute it and/or
|
c@309
|
8 modify it under the terms of the GNU General Public License as
|
c@309
|
9 published by the Free Software Foundation; either version 2 of the
|
c@309
|
10 License, or (at your option) any later version. See the file
|
c@309
|
11 COPYING included with this distribution for more information.
|
c@243
|
12 *
|
c@243
|
13 */
|
c@243
|
14
|
c@243
|
15 #include <iomanip>
|
c@243
|
16
|
c@243
|
17 #include "Segmenter.h"
|
c@243
|
18
|
c@243
|
19 ostream& operator<<(ostream& os, const Segmentation& s)
|
c@243
|
20 {
|
c@243
|
21 os << "structure_name : begin_time end_time\n";
|
c@243
|
22
|
c@243
|
23 for (int i = 0; i < s.segments.size(); i++)
|
c@243
|
24 {
|
c@243
|
25 Segment seg = s.segments[i];
|
c@243
|
26 os << std::fixed << seg.type << ':' << '\t' << std::setprecision(6) << seg.start / static_cast<double>(s.samplerate)
|
c@243
|
27 << '\t' << std::setprecision(6) << seg.end / static_cast<double>(s.samplerate) << "\n";
|
c@243
|
28 }
|
c@243
|
29
|
c@243
|
30 return os;
|
c@243
|
31 }
|