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

13
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, ...
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
10
votes
5answers
673 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 ...
10
votes
3answers
764 views

1D Min-convolution in CUDA

I have two arrays, a and b, and I would like to compute the "min convolution" to produce result c. Simple pseudo code looks like the following: for i = 0 to size(a)+size(b) c[i] = inf for j ...
9
votes
2answers
3k 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 = ...
9
votes
2answers
716 views

c++ stl convolution

Is there a nice implementation of the algorithm to calculate the convolution of two ranges in C++ STL (or even boost)? i.e. something with prototype (convolution of two ranges a..b and c..d): ...
8
votes
2answers
578 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 ...
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 ...
6
votes
4answers
106 views

Inverse convolution of image

I have source and result image. I know, that some convolution matrix has been used on source to get result. Can this convolution matrix be computed ? Or at least not exact one, but very similar.
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 ...
6
votes
1answer
1k views

CUDA small kernel 2d convolution - how to do it

I've been experimenting with CUDA kernels for days to perform a fast 2D convolution between a 500x500 image (but I could also vary the dimensions) and a very small 2D kernel (a laplacian 2d kernel, so ...
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 ...
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 ...
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 ...
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 ...
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 ...
5
votes
4answers
2k views

Lowpass FIR Filter with FFT Convolution - Overlap add, why and how

First off, sorry for not posting the code here. For some reason all the code got messed upp when i tried to enter the code i had onto this page, and it probably was too much anyhow to post, to be ...
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 ...
5
votes
3answers
648 views

Where to center the kernel when using FFTW for image convolution?

I am trying to use FFTW for image convolution. At first just to test if the system is working properly, I performed the fft, then the inverse fft, and could get the exact same image returned. Then ...
5
votes
2answers
338 views

Generic programming: Log FFT OR high-precision convolution (python)

I have a slightly unusual problem, but I am trying to avoid re-coding FFT. In general, I want to know this: If I have an algorithm that is implemented for type float, but it would work wherever a ...
4
votes
3answers
287 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
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 ...
4
votes
3answers
333 views

CUDA, NPP Filters

The CUDA NPP library supports filtering of image using the nppiFilter_8u_C1R command but keep getting errors. I have no problem getting the boxFilterNPP sample code up and running. eStatusNPP = ...
4
votes
3answers
432 views

Python/NumPy: implementing a running sum (but not quite)

Given are two arrays of equal length, one holding data, one holding the results but initially set to zero, e.g.: a = numpy.array([1, 0, 0, 1, 0, 1, 0, 0, 1, 1]) b = numpy.array([0, 0, 0, 0, 0, 0, 0, ...
4
votes
2answers
3k 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 ...
4
votes
2answers
126 views

Combination of two convolution filters

What is one filter matrix equivalent to applying [1 1 1] twice on an image using imfilter with parameter 'full'? Would it still be a 1x3 matrix?
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 ...
4
votes
1answer
3k views

Linear convolution of two images in Matlab using fft2

I would like to take two images and convolve them together in Matlab using the 2D FFT without recourse to the conv2 function. However, I am uncertain with respect to how the matrices should be ...
4
votes
1answer
2k views

2D/3D plot of image processing filters

i tried to understand the 2D & 3D plotting function in Matlab, regarding to the image processing filters, like box-plots, gauss, mexican hats and so on... I only got the kernel for the filters, ...
4
votes
1answer
323 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 ...
3
votes
2answers
1k 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
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. ...
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
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 ...
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 ...
3
votes
2answers
533 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 ...
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
1answer
609 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 ...
3
votes
2answers
326 views

What is a more efficient way to process numpy arrays based on multiple criteria?

I have written some code that for a range of years (eg. 15 years), ndimage.filters.convolveis used to convolve an array (eg. array1), then where the resulting array (eg. array2) is above a randomly ...
3
votes
2answers
789 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.
3
votes
2answers
149 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 ...
3
votes
3answers
198 views

Python SciPy convolve vs fftconvolve

I know generally speaking FFT and multiplication is usually faster than direct convolve operation, when the array is relatively large. However, I'm convolving a very long signal (say 10 million ...
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 ...
3
votes
1answer
277 views

Nvidia NPP nppiFilter produces garbage when convolving with 2d kernel

Nvidia Performance Primitives (NPP) provides the nppiFilter function for convolving a user-provided image with a user-provided kernel. For 1D convolution kernels, nppiFilter works properly. However, ...
3
votes
1answer
641 views

Image processing - box filter smoothing

EDIT: My description of a box filter is very wrong (all weights should be the same in a box filter), but the answer provided does fix the problem in the picture. Namely the error of not making sure ...
3
votes
2answers
730 views

How does Richardson–Lucy algorithm work? Code example?

I am trying to figure out how deconvolution works. I understand the idea behind it but I want to understand some of the actual algorithms which implement it - algorithms which take as input a blurred ...
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
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 ...
3
votes
1answer
62 views

calculate res[i+j] = a[i]*b[j] in Nlg(N) [duplicate]

Possible Duplicate: Fast convolution algorithm I have two arrays a and b of N length. I want to calculate the result array as res[i+j] += a[i]*b[j] Is it possible to calculate this using ...
3
votes
1answer
251 views

Searching library for a 3D fft based convolution

I have a large 3D matrix and a small 3D matrix which I want to use 3D fft based convolution to find the best match for my small 3D matrix in the larger matrix. Do you have any code in C++ that can do ...

1 2 3 4