annotate data/model/FFTModel.h @ 299:576be0d0d218

* Merge transform directory from sv-match-alignment branch (the previous comment included notes for this stuff, but I missed it in the actual merge) * Fix crash when a transform fails to create an output model and the thread that created the transform then deletes its input model thinking it's no longer needed, even though the transform run thread is still using it -- fix is to wait() on the transform before returning the null output model
author Chris Cannam
date Fri, 28 Sep 2007 16:15:06 +0000
parents c022976d18e8
children aa8dbac62024
rev   line source
Chris@152 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@152 2
Chris@152 3 /*
Chris@152 4 Sonic Visualiser
Chris@152 5 An audio file viewer and annotation editor.
Chris@152 6 Centre for Digital Music, Queen Mary, University of London.
Chris@152 7 This file copyright 2006 Chris Cannam.
Chris@152 8
Chris@152 9 This program is free software; you can redistribute it and/or
Chris@152 10 modify it under the terms of the GNU General Public License as
Chris@152 11 published by the Free Software Foundation; either version 2 of the
Chris@152 12 License, or (at your option) any later version. See the file
Chris@152 13 COPYING included with this distribution for more information.
Chris@152 14 */
Chris@152 15
Chris@152 16 #ifndef _FFT_MODEL_H_
Chris@152 17 #define _FFT_MODEL_H_
Chris@152 18
Chris@152 19 #include "data/fft/FFTDataServer.h"
Chris@152 20 #include "DenseThreeDimensionalModel.h"
Chris@152 21
Chris@275 22 #include <set>
Chris@275 23 #include <map>
Chris@275 24
Chris@254 25 /**
Chris@254 26 * An implementation of DenseThreeDimensionalModel that makes FFT data
Chris@254 27 * derived from a DenseTimeValueModel available as a generic data grid.
Chris@254 28 * The FFT data is acquired using FFTDataServer.
Chris@254 29 */
Chris@254 30
Chris@152 31 class FFTModel : public DenseThreeDimensionalModel
Chris@152 32 {
Chris@247 33 Q_OBJECT
Chris@247 34
Chris@152 35 public:
Chris@254 36 /**
Chris@254 37 * Construct an FFT model derived from the given
Chris@254 38 * DenseTimeValueModel, with the given window parameters and FFT
Chris@254 39 * size (which may exceed the window size, for zero-padded FFTs).
Chris@254 40 *
Chris@254 41 * If the model has multiple channels use only the given channel,
Chris@254 42 * unless the channel is -1 in which case merge all available
Chris@254 43 * channels.
Chris@254 44 *
Chris@254 45 * If polar is true, the data will normally be retrieved from the
Chris@254 46 * FFT model in magnitude/phase form; otherwise it will normally
Chris@254 47 * be retrieved in "cartesian" real/imaginary form. The results
Chris@254 48 * should be the same either way, but a "polar" model addressed in
Chris@254 49 * "cartesian" form or vice versa may suffer a performance
Chris@254 50 * penalty.
Chris@254 51 *
Chris@254 52 * The fillFromColumn argument gives a hint that the FFT data
Chris@254 53 * server should aim to start calculating FFT data at that column
Chris@254 54 * number if possible, as that is likely to be requested first.
Chris@254 55 */
Chris@152 56 FFTModel(const DenseTimeValueModel *model,
Chris@152 57 int channel,
Chris@152 58 WindowType windowType,
Chris@152 59 size_t windowSize,
Chris@152 60 size_t windowIncrement,
Chris@152 61 size_t fftSize,
Chris@152 62 bool polar,
Chris@152 63 size_t fillFromColumn = 0);
Chris@152 64 ~FFTModel();
Chris@152 65
Chris@152 66 float getMagnitudeAt(size_t x, size_t y) {
Chris@152 67 return m_server->getMagnitudeAt(x << m_xshift, y << m_yshift);
Chris@152 68 }
Chris@152 69 float getNormalizedMagnitudeAt(size_t x, size_t y) {
Chris@152 70 return m_server->getNormalizedMagnitudeAt(x << m_xshift, y << m_yshift);
Chris@152 71 }
Chris@152 72 float getMaximumMagnitudeAt(size_t x) {
Chris@152 73 return m_server->getMaximumMagnitudeAt(x << m_xshift);
Chris@152 74 }
Chris@152 75 float getPhaseAt(size_t x, size_t y) {
Chris@152 76 return m_server->getPhaseAt(x << m_xshift, y << m_yshift);
Chris@152 77 }
Chris@152 78 void getValuesAt(size_t x, size_t y, float &real, float &imaginary) {
Chris@152 79 m_server->getValuesAt(x << m_xshift, y << m_yshift, real, imaginary);
Chris@152 80 }
Chris@182 81 bool isColumnAvailable(size_t x) const {
Chris@152 82 return m_server->isColumnReady(x << m_xshift);
Chris@152 83 }
Chris@152 84
Chris@152 85 size_t getFillExtent() const { return m_server->getFillExtent(); }
Chris@152 86
Chris@152 87 // DenseThreeDimensionalModel and Model methods:
Chris@152 88 //
Chris@182 89 virtual size_t getWidth() const {
Chris@182 90 return m_server->getWidth() >> m_xshift;
Chris@182 91 }
Chris@182 92 virtual size_t getHeight() const {
Chris@212 93 // If there is no y-shift, the server's height (based on its
Chris@212 94 // fftsize/2 + 1) is correct. If there is a shift, then the
Chris@212 95 // server is using a larger fft size than we want, so we shift
Chris@212 96 // it right as many times as necessary, but then we need to
Chris@212 97 // re-add the "+1" part (because ((fftsize*2)/2 + 1) / 2 !=
Chris@212 98 // fftsize/2 + 1).
Chris@212 99 return (m_server->getHeight() >> m_yshift) + (m_yshift > 0 ? 1 : 0);
Chris@182 100 }
Chris@182 101 virtual float getValueAt(size_t x, size_t y) const {
Chris@182 102 return const_cast<FFTModel *>(this)->getMagnitudeAt(x, y);
Chris@182 103 }
Chris@152 104 virtual bool isOK() const {
Chris@152 105 return m_server && m_server->getModel();
Chris@152 106 }
Chris@152 107 virtual size_t getStartFrame() const {
Chris@152 108 return 0;
Chris@152 109 }
Chris@152 110 virtual size_t getEndFrame() const {
Chris@152 111 return getWidth() * getResolution() + getResolution();
Chris@152 112 }
Chris@152 113 virtual size_t getSampleRate() const;
Chris@152 114 virtual size_t getResolution() const {
Chris@152 115 return m_server->getWindowIncrement() << m_xshift;
Chris@152 116 }
Chris@152 117 virtual size_t getYBinCount() const {
Chris@152 118 return getHeight();
Chris@152 119 }
Chris@152 120 virtual float getMinimumLevel() const {
Chris@152 121 return 0.f; // Can't provide
Chris@152 122 }
Chris@152 123 virtual float getMaximumLevel() const {
Chris@152 124 return 1.f; // Can't provide
Chris@152 125 }
Chris@182 126 virtual void getColumn(size_t x, Column &result) const;
Chris@152 127 virtual QString getBinName(size_t n) const;
Chris@152 128
Chris@275 129 /**
Chris@275 130 * Calculate an estimated frequency for a stable signal in this
Chris@275 131 * bin, using phase unwrapping. This will be completely wrong if
Chris@275 132 * the signal is not stable here.
Chris@275 133 */
Chris@275 134 virtual bool estimateStableFrequency(size_t x, size_t y, float &frequency);
Chris@275 135
Chris@275 136 enum PeakPickType
Chris@275 137 {
Chris@275 138 AllPeaks, /// Any bin exceeding its immediate neighbours
Chris@275 139 MajorPeaks, /// Peaks picked using sliding median window
Chris@275 140 MajorPitchAdaptivePeaks /// Bigger window for higher frequencies
Chris@275 141 };
Chris@275 142
Chris@275 143 typedef std::set<size_t> PeakLocationSet;
Chris@275 144 typedef std::map<size_t, float> PeakSet;
Chris@275 145
Chris@275 146 /**
Chris@275 147 * Return locations of peak bins in the range [ymin,ymax]. If
Chris@275 148 * ymax is zero, getHeight()-1 will be used.
Chris@275 149 */
Chris@275 150 virtual PeakLocationSet getPeaks(PeakPickType type, size_t x,
Chris@275 151 size_t ymin = 0, size_t ymax = 0);
Chris@275 152
Chris@275 153 /**
Chris@275 154 * Return locations and estimated stable frequencies of peak bins.
Chris@275 155 */
Chris@275 156 virtual PeakSet getPeakFrequencies(PeakPickType type, size_t x,
Chris@275 157 size_t ymin = 0, size_t ymax = 0);
Chris@273 158
Chris@152 159 virtual int getCompletion() const { return m_server->getFillCompletion(); }
Chris@152 160
Chris@152 161 virtual Model *clone() const;
Chris@152 162
Chris@154 163 virtual void suspend() { m_server->suspend(); }
Chris@155 164 virtual void suspendWrites() { m_server->suspendWrites(); }
Chris@154 165 virtual void resume() { m_server->resume(); }
Chris@154 166
Chris@152 167 private:
Chris@297 168 FFTModel(const FFTModel &); // not implemented
Chris@152 169 FFTModel &operator=(const FFTModel &); // not implemented
Chris@152 170
Chris@152 171 FFTDataServer *m_server;
Chris@152 172 int m_xshift;
Chris@152 173 int m_yshift;
Chris@275 174
Chris@297 175 FFTDataServer *getServer(const DenseTimeValueModel *,
Chris@297 176 int, WindowType, size_t, size_t, size_t,
Chris@297 177 bool, size_t);
Chris@297 178
Chris@280 179 size_t getPeakPickWindowSize(PeakPickType type, size_t sampleRate,
Chris@280 180 size_t bin, float &percentile) const;
Chris@152 181 };
Chris@152 182
Chris@152 183 #endif