annotate base/Window.h @ 377:59b151f13b3e

Some docs
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 21 Oct 2013 11:50:09 +0100
parents f8c7ca4e5667
children 152abaf17c62
rev   line source
c@225 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
c@225 2
c@225 3 /*
c@225 4 QM DSP library
c@225 5 Centre for Digital Music, Queen Mary, University of London.
c@225 6 This file Copyright 2006 Chris Cannam.
c@309 7
c@309 8 This program is free software; you can redistribute it and/or
c@309 9 modify it under the terms of the GNU General Public License as
c@309 10 published by the Free Software Foundation; either version 2 of the
c@309 11 License, or (at your option) any later version. See the file
c@309 12 COPYING included with this distribution for more information.
c@225 13 */
c@225 14
c@225 15 #ifndef _WINDOW_H_
c@225 16 #define _WINDOW_H_
c@225 17
c@225 18 #include <cmath>
c@225 19 #include <iostream>
c@225 20 #include <map>
c@225 21
c@225 22 enum WindowType {
c@225 23 RectangularWindow,
c@225 24 BartlettWindow,
c@225 25 HammingWindow,
c@225 26 HanningWindow,
c@225 27 BlackmanWindow,
c@334 28
c@334 29 FirstWindow = RectangularWindow,
c@334 30 LastWindow = BlackmanWindow
c@225 31 };
c@225 32
c@377 33 /**
c@377 34 * Various shaped windows for sample frame conditioning, including
c@377 35 * cosine windows (Hann etc) and triangular and rectangular windows.
c@377 36 */
c@225 37 template <typename T>
c@225 38 class Window
c@225 39 {
c@225 40 public:
c@225 41 /**
c@334 42 * Construct a windower of the given type and size.
c@334 43 *
c@334 44 * Note that the cosine windows are periodic by design, rather
c@334 45 * than symmetrical. (A window of size N is equivalent to a
c@334 46 * symmetrical window of size N+1 with the final element missing.)
c@225 47 */
c@225 48 Window(WindowType type, size_t size) : m_type(type), m_size(size) { encache(); }
c@225 49 Window(const Window &w) : m_type(w.m_type), m_size(w.m_size) { encache(); }
c@225 50 Window &operator=(const Window &w) {
c@225 51 if (&w == this) return *this;
c@225 52 m_type = w.m_type;
c@225 53 m_size = w.m_size;
c@225 54 encache();
c@225 55 return *this;
c@225 56 }
c@251 57 virtual ~Window() { delete[] m_cache; }
c@225 58
c@225 59 void cut(T *src) const { cut(src, src); }
c@280 60 void cut(const T *src, T *dst) const {
c@225 61 for (size_t i = 0; i < m_size; ++i) dst[i] = src[i] * m_cache[i];
c@225 62 }
c@225 63
c@225 64 WindowType getType() const { return m_type; }
c@225 65 size_t getSize() const { return m_size; }
c@225 66
c@225 67 protected:
c@225 68 WindowType m_type;
c@225 69 size_t m_size;
c@225 70 T *m_cache;
c@225 71
c@225 72 void encache();
c@225 73 };
c@225 74
c@225 75 template <typename T>
c@225 76 void Window<T>::encache()
c@225 77 {
c@225 78 size_t n = m_size;
c@225 79 T *mult = new T[n];
c@225 80 size_t i;
c@225 81 for (i = 0; i < n; ++i) mult[i] = 1.0;
c@225 82
c@225 83 switch (m_type) {
c@225 84
c@225 85 case RectangularWindow:
c@334 86 for (i = 0; i < n; ++i) {
c@334 87 mult[i] = mult[i] * 0.5;
c@225 88 }
c@225 89 break;
c@225 90
c@225 91 case BartlettWindow:
c@334 92 if (n == 2) {
c@334 93 mult[0] = mult[1] = 0; // "matlab compatible"
c@334 94 } else if (n == 3) {
c@334 95 mult[0] = 0;
c@334 96 mult[1] = mult[2] = 2./3.;
c@334 97 } else if (n > 3) {
c@334 98 for (i = 0; i < n/2; ++i) {
c@334 99 mult[i] = mult[i] * (i / T(n/2));
c@334 100 mult[i + n - n/2] = mult[i + n - n/2] * (1.0 - (i / T(n/2)));
c@334 101 }
c@225 102 }
c@225 103 break;
c@225 104
c@225 105 case HammingWindow:
c@334 106 if (n > 1) {
c@334 107 for (i = 0; i < n; ++i) {
c@334 108 mult[i] = mult[i] * (0.54 - 0.46 * cos(2 * M_PI * i / n));
c@334 109 }
c@225 110 }
c@225 111 break;
c@225 112
c@225 113 case HanningWindow:
c@334 114 if (n > 1) {
c@334 115 for (i = 0; i < n; ++i) {
c@334 116 mult[i] = mult[i] * (0.50 - 0.50 * cos(2 * M_PI * i / n));
c@334 117 }
c@225 118 }
c@225 119 break;
c@225 120
c@225 121 case BlackmanWindow:
c@334 122 if (n > 1) {
c@334 123 for (i = 0; i < n; ++i) {
c@334 124 mult[i] = mult[i] * (0.42 - 0.50 * cos(2 * M_PI * i / n)
c@334 125 + 0.08 * cos(4 * M_PI * i / n));
c@334 126 }
c@225 127 }
c@225 128 break;
c@225 129 }
c@334 130
c@225 131 m_cache = mult;
c@225 132 }
c@225 133
c@225 134 #endif