AKA digital signal processing (DSP). A signal is an information-carrying wave, but in the digital sense, a 'signal' refers to either received or transmitted streams/blocks of data, commonly representing real-world quantities such as audio levels, luminosity, pressure etc over time or distance. ...
0
votes
0answers
17 views
How to handle different microphone gains in different android phones?
I am developing an android application in which I have to record an audio from an android phone and find the power of a specific frequency using Goertzel algorithm. Using that power value, I am making ...
0
votes
0answers
23 views
matlab code for ofdm post fft beamforming
I want to use post-FFT beamforming in Matlab for ODFM system in an AWGN channel. In y simulations I have 4 antenna arrays and 4 users. The signal of the first user is desired and the others are ...
0
votes
1answer
21 views
Programming Wavelets for Audio Identification [closed]
How exactly is a wavelet used digitally?
Wikipedia states
"a wavelet could be created to have a frequency of Middle C and a
short duration of roughly a 32nd note"
Would this be a data ...
-1
votes
1answer
47 views
How to capture & read, audio signals emitted from a microphone? [closed]
Hello! all
Apologies, if I seem to ask a crappy question here, but i will be basing it in the context of the below image "about how a microphone works", to easily project my question across.
Now, ...
0
votes
2answers
28 views
Fourier spectral analysis with Support Vector Machines
I did some reading this afternoon about SVM's. And have the hope that this looks very promising.
I am currently working on a problem, where I'm looking for a pattern in the fourier spectrum. What I'm ...
0
votes
1answer
75 views
The “Perfect” lowpass filter [closed]
I want to code a "perfect" lpf in C. To me "perfect" means that it mutes ALL high frequency harmonics beyond a certain point. To do this I need to calculate a soft slope even when there is a rapid ...
-4
votes
0answers
27 views
code generate in matlab for low & high frequency [closed]
A low frequency + high frequency passes in the low pass filter & high pass filter with mat lab code? pleases help me how generate this signal & how to write this code.
0
votes
0answers
17 views
C++ DSP Libraries for VST Development [closed]
I've just got involved in developing VST plugins and was wondering if anyone could recommend any C++ DSP libraries.
A lot of commercial developers are using open source projects such as Juce for ...
1
vote
0answers
16 views
quadrature and inphase component of a complex signal
I am using a blackfin dsp for filtering a signal. the filter in the dsp is signed fract16 format. the output data of the filter are delivered in uint16. i want to process the data for the calculation ...
2
votes
0answers
16 views
Phase Locked Loop: Help and clarification needed
I have been looking at implementing my own FSK modem. I have the modulation done and am satisfied that it thus far. I am now stuck on the demodulation of the signal.
I have read that a phase locked ...
0
votes
1answer
19 views
error C2057: expected constant expression
Doing some AudioDSP in VC++ 2012 and am having problems with allocating memory for the buffer
int size = input.getSize();
float buf[size];
At compile I get the error "error C2057: expected constant ...
0
votes
1answer
32 views
How to convert a byte array into an AudioInputStream in Java
I want to convert a byte array into an AudioInputStream. The byte array was filled from a *.wav file before. I have the following code:
public static AudioInputStream ...
0
votes
0answers
14 views
Detecting segments of consecutive equal(/similar) local density in sparse array
Let's say I have a sparse vector with values at the following indexes:
[0, 1, 3, 4, 6, 7, 8, 15, 21, 26, 33, 38, 48, 60, 73, 83, 85, 88, 90, 91, 191, 311, 401, 513, 533, 557, 580, 582, 583, 585, 587, ...
5
votes
1answer
105 views
Why can't we remove very high blur from an image?
I am working in digital image restoration field. Recently I have studied a number of image restoration techniques based papers. I have also used MATLAB codes that are provided on the project page of ...
0
votes
1answer
25 views
DSP board data to Matlab
I am trying to build a DSP process in Matlab.
The ADC delivers uint16 data. This data should be filtered and processed. The filter works in the DSP with fixed point (fract16).
Should a ...
-2
votes
0answers
24 views
How to remove noise in signals using Wiener Filterization [closed]
I am having a problem regarding filterization of noise and background signals. I am receiving signals from a source of device that is recording outside world signals and I am passing that data stream ...
1
vote
1answer
18 views
In digital image restoration field, what is shift-invarient blurs?
I am working in digital image restoration field. According to it the image degradation model is defined like that:
g(x,y) = h(x,y)*f(x,y) + n(x,y)
many times i have studied that the blur-kernel is ...
0
votes
1answer
29 views
audio singal processing using Python
I have been on homework about audio singal processing. I have read some paper and am confused about a formula:. The formula is used to process a 44100Hz, 16 bit, single channel audio. The audio has ...
0
votes
1answer
37 views
C++ Frequency response <-> Impulse response
I am trying to calculate an actual frequency response from a desired frequency response.
fftSize = 128;
fs = 8000;
I have 2 input arrays: f[] and aDesired[], both of which are Real and length ...
-1
votes
1answer
35 views
Low pass signal filtering using FFT or simple infinite impulse response filter [closed]
I am currently in need for filtering accelerometer data for an Android application.
First of all, I used a simple low-pass filter (simple infinite impulse response filter) as follows:
for i from 1 to ...
1
vote
1answer
57 views
fast fourier transform apply window and overlap
This may be a naive question, but I didn't find exact details in searching.
In FFT with window overlapping, after we've applied window functions to sequences of data set with overlapping and got the ...
-1
votes
1answer
45 views
Audio Mixing - How to merge two songs together [closed]
I want to create a program that allows two songs to be merged together to allow for seamless playback of music, ie Before the current song playing finishes, the next song is gradually introduced so ...
0
votes
0answers
19 views
Convolution of signals with different sampling rates
I have 2 signals with different sampling rates and the results of the convolution isn't as expected and being a novice in signal processing, I believe my approach(code snippet below) to convolve ...
0
votes
0answers
40 views
How can we determine the filter types from a frequency response? [closed]
It's just a basic question but I tried searching on them, I got just the definition of them.
However, I want to know that "How can we determine whether low-pass filter, high-pass filter, or band-pass ...
1
vote
1answer
38 views
Would a C6000 DSP be outperformed by a Cortex A9 for FP
I'm using an OMAP L138 processor at the moment which does not have a hardware FPU. We will be processing spectral data using algorithms that are FP intensive thus the ARM side won't be adequate. I'm ...
0
votes
0answers
21 views
ADSP-21489 dont get 400MHz
I wrote the program for the board with ADSP-21489 and it worked fine with the ADC, UART, IIR accelerator at 400MHz. Recently, I tried to program the same five boards, but I have a problem with PLL ...
0
votes
1answer
14 views
Huge latency while playing sampled sound javax.sound.sampled
I have a working soft-synth, which outputs and plays samples correctly, however I have a huge latency, about one second. My code is based of an article found here: ...
1
vote
0answers
41 views
What's wrong with this simple FM synth design?
I'm trying to implement some features of a Yamaha YM3812 sound chip (aka OPL2 http://en.wikipedia.org/wiki/YM3812) in JavaScript using Audiolet (a synthesis library, ...
1
vote
0answers
34 views
how do I implement frequency domain adaptive filter in matlab?
My question is about the details of the frequency domain adaptive filter (fdaf) function provided in the DSP toolbox. This can be called as h = adaptfilt.fdaf which returns a structure, I think, in ...
-1
votes
1answer
13 views
How does hardware video DRM work? [closed]
I don't quite understand how hardware DRM works when it comes to video content. At some point the video signal must be decoded in order to be displayed on the screen so what is to stop someone from ...
0
votes
2answers
178 views
1
vote
0answers
41 views
what is the meaning of these terms [closed]
I am working in digital image restoration field, recently i am studying a paper Blur-Kernel Estimation from Spectral Irregularities, in this paper i have got some terms, which i am unable to ...
0
votes
0answers
50 views
extracting values from tuple object
in python, the specgram function gives me a plot of the spectrogram for a given signal. I was wondering how do i save this spectrogram image as a numpy array.?
...
1
vote
4answers
36 views
cut signal (interlinked) and compute theses parts
I'm a French student engineer in signal processing field and I do my internship in a neuroscience laboratory. I've to process a lot of data from the brain activity with the help of Matlab, so one of ...
0
votes
0answers
19 views
How to determine ALPHA, smoothing constant, of a LPF? [migrated]
I am implementing a simple LPF in Java.
But I have problems in choosing the value of ALPHA.
public class LowPassFilter {
/*
* Time smoothing constant for low-pass filter 0 ≤ α ≤ 1 ; a ...
0
votes
0answers
57 views
Calculate impulse and step response from a cascade second order filter with matlab
I write the Matlab code above to describe a filter and to plot the impulse and step response:
%Initialization
[b,a]=ellip(4,1.3,60,2*[0.2,0.3]); %generate 8th orderfilter
[sos,q]=tf2sos(b,a); ...
1
vote
0answers
21 views
Goerzel algorithm -increasing accuracy [migrated]
I have an audio buffer with 1024 samples per second .
The sample rate is 44100 .
I am trying to id the frequency tones .
Using this Gorzel algorithm, i can get the frequency but its not that accurate ...
0
votes
1answer
43 views
How to implement Chebyshev Type 2 LPF in Java?
My raw signal graph is as follows.
What I intend to do is to do the "real peak" detection. That is the sawtooth-like noise peaks in the raw signal should not be counted.
After the Chebyshev Type 2 ...
1
vote
0answers
56 views
Musical Note Duration
I implemented an FFT algorithm to find notes from guitar in real time. But now I want to see note duration. So on a tempo like 60 BPM (= 1 beat /second, 4/4 measure), I want to figure out if I played ...
3
votes
1answer
53 views
FM synthesis using phase accumulator
I'm attempting to implement an FM synthesis operator with feedback using a phase accumulator in C. In Tomisawa's original patent, the phase accumulator going into the adder counts over both negative ...
0
votes
1answer
56 views
Observation sequences format for HMM in speech recognition
I am trying to develop a system to seperate garbage from non-garbage in speech recognition. I am using the jahmm implementation of the Hidden Markov Models. I'm confused about the format I should ...
-1
votes
0answers
36 views
Generate a composite signal and find the spectrum of the signal
I'm a starter in matlab and i have a problem .
I have been told to generate a complex signal that contains 100 tones of random frequency with a maximum frequency of 6 KHz and to find the spectrum of ...
1
vote
0answers
50 views
Applying a hamming window before FFT
I am currently detecting frequencies using FFT. I am aware that I need to apply a window before doing the FFT but I am unsure how to do this.
What exactly should be done to apply a window.
I malloc ...
-2
votes
0answers
34 views
Matlab: Debug “Improper Assignment Error”
I write code about encode ADPCM
Then I run the program use this function, error appear like that:
"Improper assignment with rectangular empty matrix.
Error in ==> adpcmenc at 98
...
0
votes
1answer
53 views
Using FFT to compute sumproduct of two 2D arrays
I am doing program to remove noise from image, in it, i need to compute a lot of sums of pointwise multiplications, right now, i do it through direct approach and it takes huge computation cost:
int ...
-3
votes
1answer
49 views
What is the absolutely fastest way to output a signal to external hardware in modern PC? [closed]
I was wondering, what is the absolutely fastest way (lowest latency) to produce external signal (for example CMOS state change from 0 to 1 on electrical wire connected to other device etc.) from PC, ...
0
votes
0answers
43 views
Constructing image in python after 2D-fft
Recently I did my own 2d-fft to get the frequency spectrum from 512x512 image, using python. I did the 2d-fft using 1d-fft, by doing the 1d on every row, and then on every column I ended up having a ...
1
vote
1answer
81 views
Which DSP filter-algoritms are simple to implement?
I have a datalogger with very little memory, and I want to implement support for filters in the firmware.
Which types of filters can I implement easily without the need for buffers or huge ...
2
votes
0answers
75 views
Frequency analysis and classification of sound signal in Matlab [closed]
I am having some problems with a task in signal processing. The idea is to analyze a sound signal, containing the sound of someone dialing a phone number on an old-fashioned analog phone line. The ...
-3
votes
0answers
32 views
C# Source Code Assistance [closed]
I'm not too well-versed in C#, and I was just presented with a task for a project - analyze the source code for a given program to see how it handles incoming telemetry data and prints it to the ...




