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).
1
vote
0answers
126 views
SSE/SIMD instructions on arrays: dealing with boundaries
I have a question related to to Intel SSE instructions but it is general of SIMD programming/parallelism.
For instance, we can consider a 1D filter/convolution. If the size of the kernel is 3, I have ...
9
votes
2answers
718 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):
...
0
votes
0answers
204 views
Convolution with mirror boundary conditions Java
I'm trying to make a convolution using mirror boundary conditions.
I already figured out how to do it on the upper boundary but cannot make it on the bottom boundary. Here's my code
// Make the ...
0
votes
1answer
101 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
167 views
Small-o(n^2) implementation of Polynomial Multiplication
I'm having a little trouble with this problem that is listed at the back of my book, i'm currently in the middle of test prep but i can't seem to locate anything regarding this in the book.
Anyone ...
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 ...
4
votes
2answers
127 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?
1
vote
2answers
428 views
matlab image smoothing with conv2
I am a newbie to imaging processing and I found some difficulties in implementing image smoothing.
Basically, I have an image A and I would like to replace everything pixel by its local average. So ...
10
votes
3answers
765 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 ...
0
votes
2answers
155 views
'Multiplying' arrays in MATLAB
First off, I didn't know what to put as title, since the question is not easy to formulate shortly.
I need to convolve a matrix-valued function (k) with a vector-valued function (X), each of which is ...
-4
votes
1answer
648 views
2-Dimensional Convolution - How to implement in Java? [closed]
I've been banging the head against the wall for quite a bit now.
I'm used to working with Matlab's conv2 function, which does the convolution by itself.
However, I just fail to implement it ...
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, ...
0
votes
0answers
63 views
Implementation of Covolution Filters Operation
I need your review on my code for convolution operation on images.
I have implemented this method in javascript for working with canvas's image data.
function image(img)
{
this.image = img;
...
4
votes
3answers
334 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 = ...
0
votes
0answers
125 views
Linear predictive model convolution [closed]
First time posting here. =)
I've been trying to develop a lightweight, relatively-fast-to-decode sound compression format for use in my gaming projects (perfect reproduction is not needed so I only ...
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, ...
1
vote
2answers
418 views
1D Convolution without if-else statements (non-FFT)?
I've written a simple serial 1D convolution function (below). I'm also experimenting with GPU convolution implementations. This is mostly for my own curiosity; I'm trying to learn the performance ...
1
vote
2answers
2k views
Simple GLSL convolution shader is atrociously slow
I'm trying to implement a 2D outline shader in OpenGL ES2.0 for iOS. It is insanely slow. As in 5fps slow. I've tracked it down to the texture2D() calls. However, without those any convolution shader ...
1
vote
3answers
342 views
Deconvolution with R (decon and deamer package)
I have a model of the form: y = x + noise. I know the distribution of 'y' and of the noise and would like to have the distribution of 'x'. So I tried to deconvolve the distributions with R. I found 2 ...
3
votes
1answer
647 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 ...
0
votes
0answers
207 views
viterbi decoder GPU
I have been working on porting Viterbi Most Likelyhood Decoding problem for some time now. While searching I came to know that, MATLAB provides a GPU accelerated Viterbi Decoder simulation using their ...
0
votes
0answers
121 views
Using ConvolveOp in an android application
Is it possible to use ConvolveOp and Kerenel Classes in an android project
I have tried to import JRE system library to my build path but still i get error
java.lang.NoClassDefFound Error..
If not is ...
1
vote
1answer
837 views
In OpenCV, what data types does cv2.filter2D() expect?
I'm teaching myself about edge detectors, and I'm trying to use OpenCV's filter2D to implement my own gradient calculator, similar to cv2.Sobel(). In the Python interface to OpenCV, cv2.filter2D() ...
1
vote
2answers
876 views
Linear convolution and cross-correlation of two vectors in Matlab using fft and same length output
I'm implementing an algorithm where I need to compute the linear convolution and cross-correlation between two 1D vectors a and b using the FFT. If the length of a is m and the length of b is n, then ...
0
votes
1answer
86 views
c++ Determine images in a polygon contour
I am using GPC (General Polygon Clipper) to create sets of images. I am unable to determine if the images are from disjoint sets though.
I am using a gpc_polygon struct defined at the above link, ...
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 ...
0
votes
1answer
285 views
OpenCV GPU convolution timing performance
I'm a beginner of CUDA programming and I'm trying to optimize an application that makes massive use of 2D convolution.
I'm trying to compare the performance of the OpenCV_GPU module separable ...
0
votes
0answers
55 views
Cocoa Touch vImage upsampling leads to strange result
I am trying to do an upsampling of a grayscale vImage by factor 2 in iOS. What I do is copy the pixels to the result bitmap as you can see in this picture (it already blurred because it's a ...
1
vote
3answers
877 views
The deconv() function in MATLAB does not invert the conv() function
I want to convolve a kernal, "k" with a spike in MATLAB. Call the convolution "calcium1". I then want to deconv calcium1 with the kernal so I can get the reconstructed spik ("reconSpike"). I am ...
0
votes
1answer
88 views
conv across dimensions matlab
I have a 3D volume and I want to apply a gaussian filter (with conv) on the first dimension.
That means that I want each column to be convolved with the filter independently.
I need something like:
...
3
votes
1answer
252 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 ...
0
votes
2answers
155 views
Convolution with a bias in Leptonica
I want to filter a pix with a convolution kernel but with a bias and i don't see how to "emulate" the Bias using Leptonica API.
So far i have:
PIX* pixs = pixRead("file.png");
L_KERNEL* kel = ...
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 ...
1
vote
1answer
185 views
Cyclic convolution with CUDA
In the FFT2D paper
http://developer.download.nvidia.com/compute/cuda/2_2/sdk/website/projects/convolutionFFT2D/doc/convolutionFFT2D.pdf
in the figure 1 and 2 it's stated that:
assuming the image ...
2
votes
2answers
374 views
deconvolution between matrix and submatrix
I have a matrix a=[[1 2 3]; [4 5 6]; [7 8 9]] and a submatrix b=[[5 6];[8 9]].
Is there a method in matlab for deconvolving (a,b) ?
I am looking for a method fo recognize the presence of a submatrix ...
5
votes
3answers
654 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 ...
1
vote
1answer
439 views
Efficient version of matlab's deconv in python
Is there an efficient implementation of matlab's deconv in python?
# Convolve
z=conv(x, y)
# Deconvolve
y0=deconv(z, x)
# Hope y~=y0
(surprisingly, googling this bring no intresting results)
1
vote
1answer
190 views
SuperResolution and Laplacian Term
I'm writing a program that allows to preform the SuperResolution algorithm. In the book, on the way of restoration, they uses the discrete Laplacian operator. I must somehow multiply the matrix (my ...
1
vote
1answer
432 views
Gradient computation by convolution masks
I need to compute the gradient of a matrix (3,3), say a=array([[1,4,2],[6,2,4],[7,5,1]]).
I simply use:
from numpy import *
dx,dy = gradient(a)
>>> dx
array([[ 5. , -2. , 2. ],
[ 3. ...
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
1k views
CUDA 2D Convolution kernel
I'm a beginner in CUDA and I'm trying to implement a Sobel Edge detection kernel.
I'm using this code for it but it doesn't work.
Can anyone tell me what is wrong with it. I just get some -1's and ...
1
vote
0answers
294 views
How to create a strong blur using the Image Convolution Function
I am trying to create a really blurred image using the PHP function image convolution.This image is used as a background behind the image in a slider.
I have tried using the Image Filter but the ...
2
votes
2answers
449 views
Best way to get data image for processing
i want to get data from uiimage to read rgb values. I want to use this data for convolution filters. In the internet i found only one method:
// First get the image into your data buffer
CGImageRef ...
2
votes
2answers
1k views
How can I boost up OpenCV performance on iPhone?
I'm using AVFoundation to capture video along with OpenCV to do image processing on iPhone. However, I'm considering using OpenGL shaders to do calculations (convolving) on 192x144 grayscale image.
...
1
vote
2answers
275 views
Replace matrix values with mean values extracted from smaller matrix in MATLAB
Let's say I have a 10 x 10 matrix. What I do then is iterate through the whole matrix with an 3 x 3 matrix (except from the edges to make it easier), and from this 3 x 3 matrix I get the mean/average ...
2
votes
2answers
1k views
is There any function in opencv which is equivalent to matlab conv2
Is there any direct opencv function for matlab function conv2? I tried using cvFilter2D(), but it seems to be giving me different results than conv2().
For example:
CvMat * Aa = cvCreateMat(2, 2, ...
0
votes
0answers
137 views
Image processing custom filter 7 by 7
Lets say I have a 7 by 7 neighborhood around a pixel that looks like this
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35
36 37 38 39 40 ...
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 ...
0
votes
1answer
1k views
How to write a convolution multiplication in Android Renderscript?
I am new to Android Renderscript.
I need to write a convolution multiplication in RenderScript since the final application is going to run on Android. Data stream is going to be an image.
More ...
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 ...
