annotate src/Modules/Strobes/ModuleLocalMax.cc @ 187:d7dc7014b0af

- AWS
author tomwalters
date Wed, 11 Aug 2010 22:53:59 +0000
parents 0cd20c748308
children
rev   line source
tomwalters@32 1 // Copyright 2010, Thomas Walters
tomwalters@32 2 //
tomwalters@32 3 // AIM-C: A C++ implementation of the Auditory Image Model
tomwalters@32 4 // http://www.acousticscale.org/AIMC
tomwalters@32 5 //
tomwalters@45 6 // Licensed under the Apache License, Version 2.0 (the "License");
tomwalters@45 7 // you may not use this file except in compliance with the License.
tomwalters@45 8 // You may obtain a copy of the License at
tomwalters@32 9 //
tomwalters@45 10 // http://www.apache.org/licenses/LICENSE-2.0
tomwalters@32 11 //
tomwalters@45 12 // Unless required by applicable law or agreed to in writing, software
tomwalters@45 13 // distributed under the License is distributed on an "AS IS" BASIS,
tomwalters@45 14 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
tomwalters@45 15 // See the License for the specific language governing permissions and
tomwalters@45 16 // limitations under the License.
tomwalters@32 17
tomwalters@32 18 /*!
tomwalters@32 19 * \file
tomwalters@32 20 * \brief
tomwalters@32 21 *
tomwalters@32 22 * \author Thomas Walters <tom@acousticscale.org>
tomwalters@32 23 * \date created 2010/02/23
tomwalters@32 24 * \version \$Id$
tomwalters@32 25 */
tomwalters@32 26
tomwalters@32 27 #include <math.h>
tomwalters@32 28 #include "Modules/Strobes/ModuleLocalMax.h"
tomwalters@32 29
tomwalters@32 30 namespace aimc {
tomwalters@32 31 ModuleLocalMax::ModuleLocalMax(Parameters *params) : Module(params) {
tomwalters@32 32 module_description_ = "Local maximum strobe criterion: decaying threshold "
tomwalters@32 33 "with timeout";
tomwalters@32 34 module_identifier_ = "local_max";
tomwalters@32 35 module_type_ = "strobes";
tomwalters@49 36 module_version_ = "$Id: $";
tomwalters@32 37
tomwalters@32 38 decay_time_ms_ = parameters_->DefaultFloat("strobes.decay_time_ms", 20.0f);
tomwalters@32 39 timeout_ms_ = parameters_->DefaultFloat("strobes.timeout_ms", 3.0f);
tomwalters@32 40 }
tomwalters@32 41
tomwalters@32 42 ModuleLocalMax::~ModuleLocalMax() {
tomwalters@32 43 }
tomwalters@32 44
tomwalters@32 45 bool ModuleLocalMax::InitializeInternal(const SignalBank &input) {
tomwalters@32 46 // Copy the parameters of the input signal bank into internal variables, so
tomwalters@32 47 // that they can be checked later.
tomwalters@32 48 sample_rate_ = input.sample_rate();
tomwalters@32 49 buffer_length_ = input.buffer_length();
tomwalters@32 50 channel_count_ = input.channel_count();
tomwalters@32 51 output_.Initialize(input);
tomwalters@32 52 strobe_timeout_samples_ = floor(timeout_ms_ * sample_rate_ / 1000.0f);
tomwalters@32 53 strobe_decay_samples_ = floor(decay_time_ms_ * sample_rate_ / 1000.0f);
tomwalters@32 54 ResetInternal();
tomwalters@32 55 return true;
tomwalters@32 56 }
tomwalters@32 57
tomwalters@32 58 void ModuleLocalMax::ResetInternal() {
tomwalters@32 59 threshold_.clear();
tomwalters@32 60 threshold_.resize(channel_count_, 0.0f);
tomwalters@32 61
tomwalters@32 62 decay_constant_.clear();
tomwalters@32 63 decay_constant_.resize(channel_count_, 1.0f);
tomwalters@32 64
tomwalters@32 65 prev_sample_.clear();
tomwalters@32 66 prev_sample_.resize(channel_count_, 10000.0f);
tomwalters@32 67 curr_sample_.clear();
tomwalters@32 68 curr_sample_.resize(channel_count_, 5000.0f);
tomwalters@32 69 next_sample_.clear();
tomwalters@32 70 next_sample_.resize(channel_count_, 0.0f);
tomwalters@32 71 }
tomwalters@32 72
tomwalters@32 73 void ModuleLocalMax::Process(const SignalBank &input) {
tomwalters@32 74 // Check to see if the module has been initialized. If not, processing
tomwalters@32 75 // should not continue.
tomwalters@32 76 if (!initialized_) {
tomwalters@32 77 LOG_ERROR(_T("Module %s not initialized."), module_identifier_.c_str());
tomwalters@32 78 return;
tomwalters@32 79 }
tomwalters@32 80
tomwalters@32 81 // Check that ths input this time is the same as the input passed to
tomwalters@32 82 // Initialize()
tomwalters@32 83 if (buffer_length_ != input.buffer_length()
tomwalters@32 84 || channel_count_ != input.channel_count()) {
tomwalters@32 85 LOG_ERROR(_T("Mismatch between input to Initialize() and input to "
tomwalters@32 86 "Process() in module %s."), module_identifier_.c_str());
tomwalters@32 87 return;
tomwalters@32 88 }
tomwalters@32 89
tomwalters@32 90 for (int ch = 0; ch < output_.channel_count(); ch++) {
tomwalters@32 91 output_.ResetStrobes(ch);
tomwalters@32 92 }
tomwalters@32 93 output_.set_start_time(input.start_time());
tomwalters@32 94 for (int i = 0; i < input.buffer_length(); i++) {
tomwalters@32 95 for (int ch = 0; ch < input.channel_count(); ++ch) {
tomwalters@32 96 // curr_sample is the sample at time (i - 1)
tomwalters@32 97 prev_sample_[ch] = curr_sample_[ch];
tomwalters@32 98 curr_sample_[ch] = next_sample_[ch];
tomwalters@32 99 next_sample_[ch] = input.sample(ch, i);
tomwalters@32 100 // Copy input signal to output signal
tomwalters@32 101 output_.set_sample(ch, i, input.sample(ch, i));
tomwalters@32 102
tomwalters@32 103 // If the current sample is above threshold, the threshold is raised to
tomwalters@32 104 // the level of the current sample, and decays from there.
tomwalters@32 105 if (curr_sample_[ch] >= threshold_[ch]) {
tomwalters@32 106 threshold_[ch] = curr_sample_[ch];
tomwalters@32 107 decay_constant_[ch] = threshold_[ch] / strobe_decay_samples_;
tomwalters@32 108
tomwalters@32 109 // If the current sample is also a peak, then it is a potential strobe
tomwalters@32 110 // point.
tomwalters@32 111 if (prev_sample_[ch] < curr_sample_[ch]
tomwalters@32 112 && next_sample_[ch] < curr_sample_[ch]) {
tomwalters@32 113 // If there are no strobes so far in this channel, then the sample
tomwalters@32 114 // is definitely a strobe (this means that the timeout is not
tomwalters@32 115 // respected across frame boundaries. This is a minor bug, but I
tomwalters@32 116 // don't believe that it's serious enough to warrant updating the
tomwalters@32 117 // samples since last strobe all the time.)
tomwalters@32 118 int count = output_.strobe_count(ch);
tomwalters@32 119 if (count > 0) {
tomwalters@32 120 // If there are previous strobes, then calculate the time since
tomwalters@32 121 // the last one. If it's long enough, then this is a strobe point,
tomwalters@32 122 // if not, then just move on.
tomwalters@32 123 int samples_since_last = (i - 1) - output_.strobe(ch, count - 1);
tomwalters@32 124 if (samples_since_last > strobe_timeout_samples_) {
tomwalters@32 125 output_.AddStrobe(ch, i - 1);
tomwalters@32 126 }
tomwalters@32 127 } else {
tomwalters@32 128 output_.AddStrobe(ch, i - 1);
tomwalters@32 129 }
tomwalters@32 130 }
tomwalters@32 131 }
tomwalters@32 132
tomwalters@32 133 // Update the threshold, decaying as necessary
tomwalters@32 134 if (threshold_[ch] > decay_constant_[ch])
tomwalters@32 135 threshold_[ch] -= decay_constant_[ch];
tomwalters@32 136 else
tomwalters@32 137 threshold_[ch] = 0.0f;
tomwalters@32 138 }
tomwalters@32 139 }
tomwalters@32 140 PushOutput();
tomwalters@32 141 }
tomwalters@32 142 } // namespace aimc
tomwalters@32 143