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).
3
votes
2answers
727 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 ...
1
vote
1answer
568 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
336 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 ...
0
votes
2answers
794 views
Filter images android?
I'm using this algorithm to filter images in andriod.
http://xjaphx.wordpress.com/2011/06/22/image-processing-convolution-matrix/
But the images are not as expected, where I can find other ways to ...
2
votes
1answer
1k views
convolution of sinus signal with rectangular pulse
I would like to perform the operation of convolution of sinus signal and
rectangular pulse in scipy. I convolved sinus signal with cosinus signal
and plotted that on the graph,
but I would like to ...
3
votes
2answers
325 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 ...
2
votes
2answers
205 views
Image rendering technique - for adding realistic text to existing photos
Curious if there are general tools out there for creating images that contain text (or possibly other elements) which are distorted to appear as an original part of the image. These "real" billboard ...
1
vote
1answer
378 views
n-fold FFT convolution and circular overlap
Problem description
I have employed the convolution theorem to calculate convolutions efficiently. Suppose there are two real signals s1 and s2 of length N each. Then I can obtain the convolution ...
2
votes
2answers
336 views
Why does correlation using DFT give unintuitive results?
I was trying to compare how similar 2 signals using correlation via DFT (Digital Fourier Transform) in Matlab, but the correlation function gives not really predictable results. For example, if I ...
1
vote
3answers
1k views
An elegant way to get the output of `normxcorr2` in a manner similar to 'conv2' - (removing the unwanted edges)
Is there an elegant way in Matlab to get the output of normxcorr2 cropped to the size of the image or cropped only to the part of the matrix that does not use zero padded edges in computation?
To ...
0
votes
2answers
937 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 ...
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 ...
0
votes
1answer
220 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
147 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
463 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, ...
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 ...
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 ...
4
votes
3answers
286 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]
...
1
vote
2answers
600 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 ...
0
votes
1answer
261 views
1D convolution in each row of an image in the x-direction
I would like to calculate a 1D convolution in each row of an image in the x-direction.
For that I am trying to use the example shown at ...
10
votes
5answers
672 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 ...
3
votes
3answers
504 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 ...
0
votes
1answer
269 views
MATLAB SPMD and nlfilter - change window size
I am using a modified version of CONTRAST2_SPMD by John Burkardt to run a 3x3 variance calculation on a large grayscale image. The advantage of this is that I can use the PCT to use 8 cores on my ...
1
vote
1answer
654 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
1k views
Image Convolution in Frequency Domain (MATLAB)
I'm writing a c++ program for a class to do convolution in the frequency domain, and I noticed the final result had error along the corner. So I tried it out in MATLAB and got the exact same results. ...
3
votes
2answers
529 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
...
0
votes
0answers
545 views
How to process 3d gaussian convolution with a 3d array or matrix in OpenCV
I have a 3d array like this.
int sz[] = {240, 240, 240};
Mat accumarray(3, sz, CV_32S, Scalar::all(0)) ;
And I want to process a 3d gaussian convolution on this array to blur the array. To make ...
2
votes
3answers
2k views
1D Fast Convolution without FFT
I need an 1D Convolution against 2 big arrays. I'm using this code in C# but it takes a loooong time to run.
I know, i know! FFT convolutions is very fast. But in this project i CAN'T use it.
It is ...
4
votes
1answer
322 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
538 views
FFT Convolution - Really low PSNR
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 the result was horrible.
The PSNR is about ...
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 ...
2
votes
1answer
986 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 ...
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 = ...
0
votes
1answer
579 views
Using a Roberts operator on an image
This algorithm is meant to apply a Roberts operator to an image, and store the result in a new file.
Instead, this code outputs the exact same image as the input.
I am new to Matlab, so your tips ...
2
votes
1answer
836 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
2answers
784 views
Applying a bank of image filters in Matlab
I need to filter an image using a bank of filters in Matlab. My first attempt was to use a simple for loop to repeatedly call the "imfilter" function for each filter in the bank.
I will need to ...
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
844 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 ...
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
608 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
546 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
855 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
719 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
409 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 ...
