Tagged Questions

AKA digital signal processing (DSP). `Signal` refers to either streams or blocks of data, commonly representing real world quantities such as audio levels, luminosity, pressure, etc. `Processing` refers to altering, analyzing, or characterizing, the data.

learn more… | top users | synonyms (2)

47
votes
15answers
1k views

Detecting patterns in waves

I'm trying to read a image from a electrocardiography and detect each one of the main waves in it (P wave, QRS complex and T wave). Now I can read the image and get a vector like (4.2; 4.4; 4.9; 4.7; ...
24
votes
9answers
3k views

Given an audio stream, find when a door slams (sound pressure level calculation?)

Not unlike a clap detector ("Clap on! clap clap Clap off! clap clap Clap on, clap off, the Clapper! clap clap ") I need to detect when a door closes. This is in a vehicle, which is easier than a ...
24
votes
8answers
23k views

Fast fourier transform in c#

Where can I find a free, very quick, and reliable implementation of FFT in C#? Can be used in a product? or are there any restrictions?
22
votes
8answers
744 views

Can sizeof(int) ever be 1 on a hosted implementation?

My view is that a C implementation cannot satisfy the specification of certain stdio functions (particularly fputc/fgetc) if sizeof(int)==1, since the int needs to be able to hold any possible value ...
21
votes
2answers
6k views

Analyze audio using Fast Fourier Transform

I am trying to create a graphical spectrum analyzer in python. I am currently reading 1024 bytes of a 16 bit dual channel 44,100 Hz sample rate audio stream and averaging the amplitude of the 2 ...
19
votes
11answers
5k views

Saturating Addition in C

What is the best (cleanest, most efficient) way to write saturating addition in C? The function or macro should add two unsigned inputs (need both 16- and 32-bit versions) and return all-bits-one ...
18
votes
15answers
2k views

.NET Library to Identify Pitches

I'd like to write a simple program(preferably in C#) to which I sing a pitch using a mic and the program identifies to which musical note that pitch corresponds. Thank you very much for your prompt ...
16
votes
2answers
149 views

Detecting wind noise

I want to develop an app for detecting wind according the audio stream. I need some expert thoughts here, just to give me guide lines or some links, I know this is not easy task but I am planning to ...
16
votes
12answers
10k views

Beats per minute from real-time audio input

I'd like to write a simple C# application to monitor the line-in audio and give me the current (well, the rolling average) beats per minute. I've seen this gamedev article, and that was absolutely no ...
15
votes
6answers
5k views

Any good recommendations for MP3/Sound libraries for java?

I am writing my masters thesis which is closely related to processing sound files (mp3 and alternative formats such as ogg, aac, ...) and sound in Java. Because Java has so much open source support, I ...
14
votes
6answers
2k views

Pitch recognition of musical notes on a smart phone

With limited resources such as slower CPUs, code size and RAM, how best to detect the pitch of a musical note, similar to what an electronic or software tuner would do? Should I use: Kiss FFT FFTW ...
13
votes
3answers
2k views

Guitar Chord Recognition Algorithm?

Whats a good digital signal processing algorithm that is good on guitar chords? Since Fast Fourier Transform I think only is accurate on single notes played on the guitar but not notes that are played ...
12
votes
7answers
2k views

Exponential Moving Average Sampled at Varying Times

I have a continuous value for which I'd like to calculate an exponential moving average. Normally I'd just use the standard formula for this: Sn = αY + (1-α)Sn-1 where Sn is the new ...
11
votes
4answers
1k views

Reverb Algorithm

I'm looking for a simple or commented reverb algorithm, even in pseudocode would help a lot. I've found a couple, but the code tends to be rather esoteric and hard to follow. Thanks
11
votes
1answer
1k views

Is there an FFT that uses a logarithmic division of frequency?

Wikipedia's Wavelet article contains this text: The discrete wavelet transform is also less computationally complex, taking O(N) time as compared to O(N log N) for the fast Fourier transform. This ...
11
votes
10answers
7k views

How to detect BPM of the song by programming

In my application, i have to detect all the songs and BPM of those songs. Detect the songs are finished now I have to detect BPM of songs. Does anyone tell me that how can I detect BPM of each song ...
11
votes
8answers
4k views

Detecting the fundamental frequency

There's this tech-festival in IIT-Bombay, India, where they're having an event called "Artbots" where we're supposed to design artbots with artistic abilities. I had an idea about a musical robot ...
11
votes
9answers
3k views

Java for Audio Processing is it Practical?

Is Java a suitable alternative to C / C++ for realtime audio processing? I am considering an app with ~100 (at max) tracks of audio with delay lines (30s @ 48khz), filtering (512 point FIR?), and ...
11
votes
6answers
4k views

Note onset detection

I am developing a system as an aid to musicians performing transcription. The aim is to perform automatic music transcription (it does not have to be perfect, as the user will correct glitches / ...
11
votes
7answers
11k views

Integrating gyro and accelerometer readings

I have read a number of papers on Kalman filters, but there seem to be few good publically accessible worked examples of getting from mathematical paper to actual working code. I have a system ...
10
votes
5answers
561 views

How to correlate two time series with gaps and different time bases?

I have two time series of 3D accelerometer data that have different time bases (clocks started at different times, with some very slight creep during the sampling time), as well as containing many ...
10
votes
5answers
757 views

How do I convert a floating point C code to fixed point?

I have a C code which uses doubles. I want to be able to run the code on a DSP (TMS320). But the DSP doesn't support doubles, only fixed-point numbers. What is the best way to convert the code into ...
10
votes
4answers
1k views

Chord detection algorithms?

I am developing software that depends on musical chords detection. I know some algorithms for pitch detection, with techniques based on cepstral analysis or autocorrelation, but they are mainly ...
10
votes
10answers
615 views

Determining the best audio quality

How can you determine the best audio quality in a list of audio files of the same audio clip, with out looking at the audio file's header. The tricky part is that all of the files came from different ...
10
votes
2answers
522 views

Entertaining a baby with VB.NET

I would like to write a little application in VB.NET that will detect a baby's cry. How would I get started with such an application?
10
votes
7answers
5k views

Music - How do you analyse the fundamental frequency of a PCM or WAV sample

I have a sample held in a buffer from DirectX. It's a sample of a note played and captured from an instrument. How do I analyse the frequency of the sample (like a guitar tuner does)? I believe FFT's ...
9
votes
4answers
802 views

FFT Inaccuracy for C#

Ive been experimenting with the FFT algorithm. I use NAudio along with a working code of the FFT algorithm from the internet. Based on my observations of the performance, the resulting pitch is ...
9
votes
5answers
3k views

Extracting precise frequencies from FFT Bins using phase change between frames

I have been looking through this fantastic article: http://www.dspdimension.com/admin/pitch-shifting-using-the-ft/ While being fantastic, it is extremely hard and heavy going. This material is ...
9
votes
5answers
11k views

Signal processing library in Java?

I'd like to compute power spectral density of time series; do some bandpass, lowpass, and highpass filtering; maybe some other basic stuff. Is there a nice open-source Java library to do this? I've ...
9
votes
8answers
16k views

What Are High-Pass and Low-Pass Filters?

Graphics and audio editing and processing software often contain functions called "High-Pass Filter" and "Low-Pass Filter". Exactly what do these do, and what are the algorithms for implementing ...
8
votes
4answers
148 views

Detecting dips in a 2D plot

I need to automatically detect dips in a 2D plot, like the regions marked with red circles in the figure below. I'm only interested in the "main" dips, meaning the dips have to span a minimum length ...
8
votes
3answers
314 views

Fourier Domain - have I got my theory/terminology right? [closed]

In terms of images. Fourier transform converts spatial to frequency (Fourier) domain. DC value = average of sinusoids (sine waves), F(0,0) and average brightness/graylevel of image. Fourier has a ...
8
votes
1answer
673 views

Understanding Overlap and Add for Filtering

I am trying to implement the overlap and add method in oder to apply a filter in a real time context. However, it seems that there is something I am doing wrong, as the resulting output has a larger ...
8
votes
3answers
760 views

Algorithm to determine fundamental frequency from potential harmonics

I am attempting to extract a fundamental frequency from a sound source. maybe someone is singing A3 into the microphone, so I want to be detecting ~ 110Hz my approach is: FFT 1024 floats use the ...
8
votes
3answers
2k views

How to extract semi-precise frequencies from a WAV file using Fourier Transforms

Let us say that I have a WAV file. In this file, is a series of sine tones at precise 1 second intervals. I want to use the FFTW library to extract these tones in sequence. Is this particularly hard ...
8
votes
8answers
7k views

c/c++ FFT library with non GPL license

I am looking for a FFT library with a license that allow me to include it in a commercial C++ software. Free would be nice. (Intel IPPS is 199$ per head, which is a bit expensive for the number of ...
8
votes
10answers
2k views

Which algorithm should I use for signal (sound) one class classification?

Update this question was previously titled as "Give me the name of a simple algorithm for signal(sound) pattern detection" My objective is to detect the presence of a given pattern in a noisy ...
8
votes
9answers
6k views

Downsampling and applying a lowpass filter to digital audio

I've got a 44Khz audio stream from a CD, represented as an array of 16 bit PCM samples. I'd like to cut it down to an 11KHz stream. How do I do that? From my days of engineering class many years ...
8
votes
3answers
6k views

C/C++ library for reading MIDI signals from a USB MIDI device

I want to write C/C++ programs that take input from a MIDI device. The MIDI device connects to my PC using a USB connector. I'm looking for a (C/C++ implemented) library that I can use to read ...
7
votes
1answer
61 views

Harmonics count in a music sample

To determine the richness of a sound, I would like to determine the number of harmonics in a sample of music. For that, I'm using Processing with the Minim library which gives me a full spectrum with ...
7
votes
1answer
253 views

Extracting beats out of MP3 music with Python

What kind of solutions are there to analyze beats out of MP3 music in Python? The purpose of this would be to use rhythm information to time the keyframes of generated animation, export animation as ...
7
votes
4answers
251 views

Is there any signal-processing algorithm that could reverse-engineer how the sound wave was produced through the vocal system of group of humans?

Having long sound tape with 3 speakers on it , how to get info on how there mouthes open/close? We have audio recording, with more than one speaker. Sound is clear and does not require noise ...
7
votes
1answer
449 views

How to generate MFCC Algorithm's triangular windows and how to use them?

I am implementing MFCC algorithm in Java. There is a sample code here: http://www.ee.columbia.edu/~dpwe/muscontent/practical/mfcc.m at Matlab. However I have some problems with mel filter banking ...
7
votes
2answers
220 views

How can I determine if my convolution is separable?

What makes a convolution kernel separable? How would I be able to tell what those separable parts were in order to do two 1D convolutions instead of a 2D convolution> Thanks
7
votes
2answers
1k views

iphone low pass filter

I'm trying to implement a low-pass filter for an iphone app where I record a sound and then it gets played back slightly muffled; like the voice is coming from another room. I've looked into the ...
7
votes
5answers
1k views

DSP Algorithms Book

I'm looking for a book similar to "Introduction to Algorithms" by Thomas Cormen geared towards DSP algorithms. Is there anything as thorough as Cormen on the DSP market? EDIT I should say I'm ...
7
votes
4answers
6k views

Real-time pitch detection using FFT

I'm trying to do real-time pitch detection using C++. I'm testing some code from performous (http://performous.org/), because everything else hasn't worked for me. I know for sure that this works, but ...
7
votes
5answers
1k views

Algorithm to determine the effective “phase difference” between two signals with different frequencies?

The quick version: What algorithm could I use to determine the "phase difference" between two square wave signals with different frequencies, if the only information that I have is the time at which ...
7
votes
5answers
6k views

FFT-based 2D convolution and correlation in Python

Is there a FFT-based 2D cross-correlation or convolution function built into scipy (or another popular library)? There are functions like these: scipy.signal.correlate2d - "the direct method ...
7
votes
7answers
1k views

Faster abs-max of float array

I need to draw peak meters for audio in realtime. Minimum 44100 samples per second times a minimum 40 streams. Each buffer is between 64 and 1024 samples. I need to grab the abs max from each buffer. ...

1 2 3 4 5 14