A mathematical operation that combines two signals to generate a third signal. Convolution often arises in audio processing (e.g., filtering, reverb) and image processing (e.g., blurring, edge detection).

learn more… | top users | synonyms

3
votes
2answers
953 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
889 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
3answers
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 ...
0
votes
2answers
1k views

Convolution of a wavfile on Matlab

I'm doing an assignment to generate echo on Matlab using convolution I don't understand what wavread actually does. Is the output a vector that I can use in a convolution? I tried so and got an ...
4
votes
3answers
2k views

MATLAB: Convolution of Matrix Valued Function

I've written this code to perform the 1-d convolution of a 2-d matrix valued function (k is my time index, kend is on the order of 10e3). Is there a faster or cleaner way to do this, perhaps using ...
3
votes
1answer
635 views

What is usually done with the boundary pixels of the image

i'm working on image processing with CUDA and i've a doubt about pixels processing. What is often done with the boundary pixels of an image when applying a mxm convolution filter?. I've tested, in a ...
2
votes
2answers
556 views

Convolution with separable kernel

I'm looking at the CUDA SDK convolution with separable kernels, and I have a simple question but can't find an answer: Do the vectors, whose convolution gives the kernel, need to have the same size? ...
0
votes
2answers
2k views

CUDA FFT - power of two

I'm looking at the FFT example on the CUDA SDK and I'm wondering: why the CUFFT is much faster when the half of the padded data is a power of two? (half because in frequency domain half is redundant) ...
1
vote
2answers
879 views

CUDA convolution - non separable kernels

I need to implement an efficient version of an image convolution with non-separable kernels (so CUDA's sdk is useful just for the FFT example, but it is clearly stated that it works great only for big ...
2
votes
1answer
732 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 ...
3
votes
1answer
2k views

convolution in R

I tried to do convolution in R directly and using FFTs then taking inverse. But it seems from simple observation it is not correct. Look at this example: # DIRECTLY > x2$xt [1] 24.610 24.605 ...
1
vote
2answers
416 views

GLSL Convolution with Large Kernel in Texture Memory

I'm very new to GLSL, but I'm trying to write convolution kernel with in a fragment shader for image processing. I was able to do this just fine when my kernel was small (3x3) using a constant ...
6
votes
2answers
1k views

How to use pre-multiplied during image convolution to solve alpha bleed problem?

i'm trying to apply a box blur to an transparent image, and i'm getting a "dark halo" around the edges. Jerry Huxtable has a short mention of the problem, and a very good demonstration showing the ...
1
vote
1answer
663 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 ...
1
vote
5answers
1k views

Optimizing 1D Convolution

Is there a way to speed up this 1D convolution ? I tried to make the dy cache efficient but compiling with g++ and -O3 gave worse performances. I am convolving with [-1. , 0., 1] in both directions. ...
0
votes
1answer
394 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.
0
votes
1answer
240 views

I'm looking for specific matrices to plug into a convolution matrix

Assuming I already have a working convolution matrix algorithm in place, I'm looking for practical examples of general matrices that are useful for image processing in particular. The canonical ...
2
votes
1answer
696 views

Convolve working with Interpolated Functions in Mathematica

I'm using Mathematica 7. I have an interpolated function, here's an example: pressures = WeatherData["Chicago", "Pressure", {2010, 8}] // DeleteCases[#, {_, _Missing}] & // ...
3
votes
2answers
809 views

Is there a Python equivalent of MATLAB's conv2 function?

Does Python or any of its modules have an equivalent of MATLAB's conv2 function? More specifically, I'm interested in something that does the same computation as conv2(A, B, 'same') in MATLAB.
2
votes
2answers
439 views

PHP sharpness convolution martix

I'm using a convolution matrix for sharpness in PHP GD and I want to change the sharpness "level". Where would I make changes to this if I want to make it more or less sharp? $image = ...
1
vote
2answers
2k views

Writen Convolution function in matlab giving trouble

Hey there, I've been having difficulty writing the matlab equivalent of the conv(x,y) function. I cant figure out why this gives the incorrect output. For the arrays x1 = [1 2 1] and x2 = [3 1 1]. ...
1
vote
3answers
1k views

OpenCV: Detect a black to white gradient in an area

I uploaded an example image for better understanding: http://www.imagebanana.com/view/kaja46ko/test.jpg In the image you can see some scanlines and a marker (the white retangle with the circle in ...
6
votes
3answers
7k views

Gaussian blur and convolution kernels

I do not understand what a convolution kernel is and how I would apply a convolution matrix to pixels in an image (I am talking about doing a Gaussian Blur operation on an image). Also could I get ...
5
votes
5answers
680 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 ...
0
votes
2answers
317 views

Multi-dimensional array edge/border conditions

I'm iterating over a 3 dimensional array (which is an image with 3 values for each pixel) to apply a 3x3 filter to each pixel as follows: //For each value on the image for ...
1
vote
3answers
850 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 ...
0
votes
2answers
1k views

OpenMP + SSE gives no speedup

My Professor found out this interesting experiment of 3D Linearly separable Kernel Convolution using SSE and OpenMP, and gave the task to me to benchmark the statistics on our system. The author ...
5
votes
2answers
6k views

2d convolution using python and numpy

I am trying to perform a 2d convolution in python using numpy I have a 2d array as follows with kernel H_r for the rows and H_c for the columns data = np.zeros((nr, nc), dtype=np.float32) #fill ...
1
vote
4answers
6k views

How does a convolution matrix work?

I know this isn't very relevant to programming, but I need to know how a convolution matrix works for a PHP GD function. I've searched a lot on Google, but can't find anything that explains it well.
14
votes
4answers
3k views

Improving Numpy Performance

I'd like to improve the performance of convolution using python, and was hoping for some insight on how to best go about improving performance. I am currently using scipy to perform the convolution, ...
2
votes
3answers
2k views

3d convolution in c++

I'm looking for some source code implementing 3d convolution. Ideally, I need C++ code or CUDA code. I'd appreciate if anybody can point me to a nice and fast implementation :-) Cheers
2
votes
1answer
1k views

Convolution matrix for diagonal motion blur

I know my question is not really a programming question but it came out of programming need. Does anyone happen to know the convolution matrix for diagonal motion blur. 3x3, 4x4 or 5x5 are all good. ...
2
votes
3answers
3k views

Fastest method to compute convolution

I have to apply a convolution filter on each row of many images. The classic is 360 images of 1024x1024 pixels. In my use case it is 720 images 560x600 pixels. The problem is that my code is much ...
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 ...
1
vote
3answers
4k views

Convolution of two functions in Python

I will have to implement a convolution of two functions in Python, but SciPy/Numpy appear to have functions only for the convolution of two arrays. Before I try to implement this by using the the ...
3
votes
1answer
1k views

Basic Complexity Question - Convolution

I'm trying to evaluate the complexity of some basic image filtering algorithms. I was wondering if you could verify this theory; For a basic pixel by pixel filter like Inverse the number of ...
4
votes
5answers
2k views

Convolution Filter - Float Precision C Vs Java

I'm porting a library of image manipulation routines into C from Java and I'm getting some very small differences when I compare the results. Is it reasonable that these differences are in 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 ...
3
votes
2answers
150 views

Need Block-Oriented Error Correcting Scheme

I'm storing many files of various lengths into a block-oriented medium (fixed-size e.g. 1024 bytes). When reading back the file, each block will either be missing or correct (no bit errors or the ...

1 2 3 4