Click here to Skip to main content
15,896,207 members
Articles / Desktop Programming / Windows Forms

FFT Guitar Tuner

Rate me:
Please Sign up or sign in to vote.
4.95/5 (76 votes)
10 Aug 2010MIT4 min read 555.4K   30.2K   228  
Using a Fast Fourier Transform to calculate the fundamental frequency of the captured audio sound
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;

namespace FftGuitarTuner
{
    public abstract class FrequencyInfoSource
    {
        public abstract void Listen();
        public abstract void Stop();

        public event EventHandler<FrequencyDetectedEventArgs> FrequencyDetected;

        protected void OnFrequencyDetected(FrequencyDetectedEventArgs e)
        {
            if (FrequencyDetected != null)
            {
                FrequencyDetected(this, e);
            }
        }
    }

    public class FrequencyDetectedEventArgs : EventArgs
    {
        double frequency;

        public double Frequency
        {
            get { return frequency; }
        }

        public FrequencyDetectedEventArgs(double frequency)
        {
            this.frequency = frequency;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions