diff --git a/src/FFT.cpp b/src/FFT.cpp index 140e334..6291fb8 100644 --- a/src/FFT.cpp +++ b/src/FFT.cpp @@ -58,8 +58,7 @@ FFT(const std::vector::const_iterator& begin, const std::vector::const_iterator& end, size_t sampleRate, double minFreq, double maxFreq, - unsigned int zeropadding, - bool mertz) + unsigned int zeropadding) { std::vector signal(begin, end); size_t N = signal.size(); @@ -90,10 +89,7 @@ FFT(const std::vector::const_iterator& begin, for (int k = freq / freqRes; freq < nyquistLimit && freq < maxFreq; k++) { - if(!mertz) - output.push_back(std::make_pair(freq, 2.0f * std::abs(spectrum[k]) / (double)N)); - else - output.push_back(std::make_pair(freq, 2.0f * (spectrum[k] * std::exp(-1i * std::arg(spectrum[k]))).real() / (double)N)); + output.push_back(std::make_pair(freq, 2.0f * std::abs(spectrum[k]) / (double)N)); freq += freqRes; } diff --git a/src/FFT.hpp b/src/FFT.hpp index 25c0e8f..0a04842 100644 --- a/src/FFT.hpp +++ b/src/FFT.hpp @@ -14,7 +14,6 @@ extern std::vector> FFT(const std::vector::con const std::vector::const_iterator& end, size_t sampleRate, double minFreq, double maxFreq, - unsigned int zeropadding, - bool mertz); + unsigned int zeropadding); extern void SetWindowFunction(WindowFunctions func, unsigned int width); \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp index 0e76896..8daff5a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,7 +26,6 @@ struct Settings { double minFreq, maxFreq; unsigned int analyzeChannel; unsigned int zeropadding; - bool mertz; WindowFunctions window; }; @@ -73,8 +72,7 @@ int main(int argc, char** argv) audioFile.samples[c-1].cend(), sampleRate, setts.minFreq, setts.maxFreq, - setts.zeropadding, - setts.mertz + setts.zeropadding ); output[chName] = nlohmann::json::array(); @@ -98,8 +96,7 @@ int main(int argc, char** argv) ), sampleRate, setts.minFreq, setts.maxFreq, - setts.zeropadding, - setts.mertz + setts.zeropadding ); output[chName].push_back({ @@ -143,7 +140,6 @@ Settings Parse(int argc, char** argv) ("f,frequency", "Defines the frequency range of the output spectrum (Default: all the frequencies)", cxxopts::value>()) ("p,pad", "Add extra zero-padding. By default, the program will pad the signals with 0s until the number of samples is a power of 2 (this would be equivalent to -p 1). With this option you can tell the program to instead pad until the power of 2 after the next one (-p 2) etc. This increases frequency resolution", cxxopts::value()) ("w,window", "Specify the window function used (rectangle (default), von-hann, gauss, triangle, blackman (3-term))", cxxopts::value()->default_value("rectangle")) - ("mertz", "Use the Mertz method to phase-correct the complex Fourier spectrum") ("m,mono", "Analyze only the given channel", cxxopts::value()->default_value("0")) ("files", "Files to fourier transform", cxxopts::value>()) ("h,help", "Print usage") @@ -180,7 +176,6 @@ Settings Parse(int argc, char** argv) setts.splitInterval = (result.count("interval") ? result["interval"].as() : 0.0f); setts.analyzeChannel = (result.count("mono") ? result["mono"].as() : 0); setts.zeropadding = (result.count("pad") ? result["pad"].as() : 1); - setts.mertz = (result.count("mertz") ? true : false); if (!result.count("window")) {