summaryrefslogtreecommitdiff
path: root/libs/qm-dsp/dsp/segmentation/Segmenter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/qm-dsp/dsp/segmentation/Segmenter.cpp')
-rw-r--r--libs/qm-dsp/dsp/segmentation/Segmenter.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/libs/qm-dsp/dsp/segmentation/Segmenter.cpp b/libs/qm-dsp/dsp/segmentation/Segmenter.cpp
new file mode 100644
index 0000000000..538eaacc78
--- /dev/null
+++ b/libs/qm-dsp/dsp/segmentation/Segmenter.cpp
@@ -0,0 +1,31 @@
+/*
+ * Segmenter.cpp
+ *
+ * Created by Mark Levy on 04/04/2006.
+ * Copyright 2006 Centre for Digital Music, Queen Mary, University of London.
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version. See the file
+ COPYING included with this distribution for more information.
+ *
+ */
+
+#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;
+}