Tagged Questions

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

12
votes
4answers
2k 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, ...
10
votes
5answers
198 views

Extremely large weighted average

I am using 64 bit matlab with 32g of RAM (just so you know). I have a file (vector) of 1.3 million numbers (integers). I want to make another vector of the same length, where each point is a weighted ...
9
votes
2answers
155 views

Artefacts from Riemann sum in scipy.signal.convolve

Short summary: How do I quickly calculate the finite convolution of two arrays? Problem description I am trying to obtain the finite convolution of two functions f(x), g(x) defined by To achieve ...
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
6
votes
2answers
368 views

Convolution computations in Numpy/Scipy

Profiling some computational work I'm doing showed me that one bottleneck in my program was a function that basically did this (np is numpy, sp is scipy): def mix1(signal1, signal2): spec1 = ...
5
votes
2answers
490 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 ...
5
votes
1answer
957 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 ...
5
votes
5answers
512 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 ...
4
votes
3answers
135 views

In clojure, what's the efficient way to convolve a vector by a kernel?

I came up with this: (def kernel [0 1 1 2 3 3 0 0 0 0 0 0]) (def data [1 5 7 4 8 3 9 5 6 3 2 1 1 7 4 9 3 2 1 8 6 4]) (defn capped+ [a b c] (let [s (+ a b)] (if (> s c) c s))) (defn *+ [a b] ...
4
votes
3answers
713 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 ...
4
votes
2answers
767 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 ...
4
votes
5answers
1k 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
3answers
176 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
2answers
307 views

Gaussian Blur with FFT Questions

I have a current implementation of Gaussian Blur using regular convolution. It is efficient enough for small kernels, but once the kernels size gets a little bigger, the performance takes a hit. So, I ...
3
votes
1answer
479 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
407 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. ...
3
votes
2answers
2k 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 ...
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
108 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 ...
2
votes
2answers
135 views

Convolution theory vs implementation

I study convolution in image processing as it is a part of the curriculum, I understand the theory and the formula but I am confused about its implementation. The formula is: What I understand ...
2
votes
1answer
105 views

How to use the initializer in a Python ThreadPool

I am trying to do threaded convolution using PyFFTW, in order to calculate a large number of 2D convolutions simultaneously. (One does not need separate processes, since the GIL is released for Numpy ...
2
votes
1answer
174 views

FFT Convolution - Really low PSNR

I'm convoluting an image with a filter. I'm convoluting an image (512*512) with a FFT filter (kernelsize=10), it looks good. But when I compare it with an image which I convoluted the normal way ...
2
votes
1answer
268 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 ...
2
votes
1answer
581 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 ...
2
votes
2answers
408 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 ...
2
votes
1answer
423 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}] & // ...
2
votes
2answers
324 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
220 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 = ...
2
votes
3answers
1k 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
844 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 ...
1
vote
2answers
106 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 ...
1
vote
1answer
199 views

How to Optimize this Image convolution filter Method in MonoTouch?

After having realized that no realtime graphics effect library exists for MonoTouch, I decided to write my own. After some research I've written a convolution method that works perfectly but, even ...
1
vote
1answer
217 views

FFT Convolution - How to apply Kernel

I'm pretty new to Image Processing and found out that the FFT convolution speeds up the convolution with large kernel sizes a lot. My question is, how can I apply a kernel to a image in frequency ...
1
vote
1answer
215 views

Finding the convolution of two histograms

The probability distribution of the sum of two random variables, x and y, is given by the convolution of the individual distributions. I'm having some trouble doing this numerically. In the following ...
1
vote
1answer
212 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 ...
1
vote
2answers
263 views

Convolution with separable kernel - simple question

I'm looking at the CUDA SDK convolution iwth separable kernels (http://blogs.mathworks.com/steve/2006/10/04/separable-convolution/) and I have a simple question but can't find an answer: do the ...
1
vote
2answers
216 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 ...
1
vote
1answer
397 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 ...
1
vote
5answers
700 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. ...
1
vote
2answers
762 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
218 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 ...
1
vote
1answer
2k 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
3k 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.
1
vote
3answers
2k 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 ...
0
votes
2answers
38 views

Accelerate's vImage vs. vDSP

I'm trying to use the Accelerate framework on iOS to bypass the fact that Core Image on iOS doesn't support custom filters/kernels. I'm developing an edge detection filter using two convolutions with ...
0
votes
1answer
31 views

2D-filter algorithm

Is there anyway to do this faster? I want to reduce the O(N^2) complexity to something lower. Note: The filter kernel is rotational symmetric around N/2. for(unsigned int ...
0
votes
1answer
22 views

Is it possible to combine Convolution Matrices to apply several transformations at once?

Theoretically it should be possible to combine transformation or color matrices, through addition or multiplication (I'm lame when it comes to such math). Is it possible?
0
votes
1answer
125 views

OpenCV GPU convolve function and the missing border

I have a question about the Convolve function in OpenCV using GPU acceleration. The speed of the convolutions are roughly 3.5 faster using GPU when running: convolve(src_32F, kernel, cresult, false, ...
0
votes
2answers
120 views

1d linear convolution in ANSI C code?

Rather than reinvent the wheel, I wonder if anyone could refer me to a 1D linear convolution code snippet in ANSI C? I did a search on google and in stack overflow, but couldn't find anything in C I ...
0
votes
1answer
75 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 2