1
vote
0answers
22 views

partially reconstruct information of function convoluted with boxcar kernel

the function (f) I want to reconstruct partially could look like this: The following properties are known: It consists only of alternating plateau (high/low). So the first derivation is zero ...
1
vote
1answer
30 views

plot convolution in the time domain with octave

This plots but the result of conv is a vector of a new length and so t is usless to include in plot like plot(t, z1) %doesn't work!. t = [-5:.1:10]; unit = @(t) 1.*(t>=0); h1 = @(t) (3*t + ...
3
votes
3answers
148 views

2D Convolution in Python similar to Matlab's conv2

I have been trying to do Convolution of a 2D Matrix using SciPy, and Numpy but have failed. For SciPy I tried, sepfir2d and scipy.signal.convolve and Convolve2D for Numpy. Is there a simple function ...
1
vote
2answers
531 views

Matlab: conv() -> fft() * fft() -> ifft() [duplicate]

Good day to everyone! I tried to tackle the basic problem of obtaining the original signal from observing its convolution with some known impulse response. But the results I get are somehow totally ...
0
votes
0answers
200 views

Convolution filter in frequency domain. Step by step. Image

I have to do a convolution in frequency domain, and I'm not sure if I got the steps right. I'm doing the fourier of image I FI=fft(I); After that should I switch the quarters 1-3,2-4 or not? ...
3
votes
1answer
229 views

Convolution for Digital Signal Processing in R

I have a simple digital system which has an input x(n) = u(n) - u(n-4). I am trying to find the output y(n) with the conv() function from the 'signal' package or the convolve() function from the ...
1
vote
1answer
379 views

why fft accelerate the convolution calculation?

I am seeing a lot of literature in which they say the by using the fft one can reach a faster convolution. I know that one needs to get fft and and then ifft from the results, but I really do not ...
3
votes
2answers
312 views

Partial convolution in MATLAB

I have large matrix (image) and a small template. I would like to convolve the small matrix with the larger matrix. For example, the blue region is the section that I want to be used for convolution. ...
0
votes
1answer
100 views

Impulse response's flip in convolution [closed]

During convolution on a signal, why is impulse response's flip needed during the process?
1
vote
1answer
314 views

CUDA - how to pad kernel before convolution?

I know that frequency multiplication = circular convolution in time space for discrete signals (vectors). I also know that "the convolution theorem yields the desired linear convolution result only ...
0
votes
1answer
263 views

Buffered Block Convolution Using Overlap-Save

So, I'm currently implementing the overlap-save method of block convolution in matlab, and having some trouble doing so. My implementation is using a buffered input in order to do real-time ...
1
vote
1answer
569 views

Code for image convolution not displaying an image properly?

So heres the deal: I tried simplifiying (to the user) how to execute convolution. I tried using this to run a Sobel filter and when i try to display the image (via jfram and image icon) the image icon ...
5
votes
2answers
3k views

Difference between filter and conv in MATLAB

I have a MATLAB question: I am trying to calculate the output of a LTI system and i came accross two different MATLAB functions that are supposed to be appropriate for the job, filter and conv. What ...
1
vote
2answers
602 views

Pipelining 1D Convolution algorithm using C on DSP development board

The DSP board I am currently using is DSK6416 from Spectrum Digital, and I am implementing a convolution algorithm in C to convolve input voice samples with a pre-recorded impulse response array. The ...
3
votes
3answers
509 views

How to solve exact pattern matching with convolution

I am trying to solve an exact pattern matching problem when the alphabet consists of the 5 symbols {a, b, c, d, #} where the special symbol # matches any symbol (including itself). For example, if T ...
3
votes
1answer
2k views

Fast 2D convolution implementation?

I've made a CUDA program for 2D convolution and now want to compare it to some non-CUDA implementation to measure the speedup. I could compare to my own implementation in plain C using the classical ...
3
votes
2answers
927 views

Fast convolution algorithm

I need to convolve two one dimensional signals, one has on average 500 points (This one is a Hanning window function), the other 125000. Per run, I need to apply three times the convolution operation. ...
11
votes
2answers
846 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
6
votes
2answers
1k views

Use convolution to find a reference audio sample in a continuous stream of sound

in my previous question on finding a reference audio sample in a bigger audio sample, it was proposed, that I should use convolution. Using DSPUtil, I was able to do this. I played a little with it ...
2
votes
1answer
720 views

Convolution along one axis only

I have two 2-D arrays with the same first axis dimensions. In python, I would like to convolve the two matrices along the second axis only. I would like to get C below without computing the ...
1
vote
1answer
648 views

Can FFT length affect filtering accuracy?

I am designing a fractional delay filter, and my lagrange coefficient of order 5 h(n) have 6 taps in time domain. I have tested to convolute the h(n) with x(n) which is 5000 sampled signal using ...
5
votes
2answers
2k views

Fast 2D convolution for DSP

I want to implement some image-processing algorithms which are intended to run on a beagleboard. These algorithms use convolutions extensively. I'm trying to find a good C implementation for 2D ...
0
votes
1answer
385 views

process 35 x 35 kernel using convolution method

Dear all, I would like to do a convolution using a 35 x 35 kernel. Any suggestion? or any method already in opencv i can use? Because now the cvfilter2d can only support until 10 x 10 kernel.
5
votes
5answers
675 views

Trouble with lazy convolution fn in Clojure

I am writing some signal processing software, and I am starting off by writing out a discrete convolution function. This works fine for the first ten thousand or so list of values, but as they get ...
1
vote
3answers
831 views

Convolving two signals

Calculate the convolution of the following signals (your answer will be in the form of an equation): h[n] = δ[n-1] + δ[n+1], x[n] = δ[n-a] + δ[n+b] I'm lost as to what ...
5
votes
2answers
1k views

How do I multiply the spectra of two images of different dimensions?

This is not a "programming" question. But I'm sure it's something that is widely known and understood in this community. I have an image, x, and a much smaller image, y, and I need to convolve the ...
3
votes
4answers
1k views

How do I do convolution in F#?

I would like convolve a discrete signal with a discrete filter. The signal and filter is sequences of float in F#. The only way I can figure out how to do it is with two nested for loops and a ...