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
95 views
Is convolution slower in Numpy than in Matlab?
Convolution in Matlab appears to be twice as fast as convolution in Numpy.
Python code (takes 19 seconds on my machine):
import numpy as np
from scipy import ndimage
import time
img = ...
0
votes
1answer
16 views
Visualization of filters in convolution neural networks
I read this article "ufldf", it evolves visualization of hidden layers in autoencoder, but I'm confused how to visualize filters for a convolution neural networks. In my opinion, for the first ...
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?
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.
-1
votes
1answer
44 views
computational complexity of convolution
I read that the computational complexity of the general convolution algorithm is O(n^2), while by means of the FFT is O(n log n).
What about convolution in 2-D and 3-D?
Any reference?
2
votes
1answer
35 views
Avoid dependent texture reads with “large” kernel
On iOS, I've found that most (all?) devices have a GL_MAX_VARYING_VECTORS of 8. I've also read (see the note here) that even swizzle operations count as dependent texture reads. Together, these ...
1
vote
0answers
23 views
partially reconstruct information of function convoluted with boxcar kernel
the function (f) I want to reconstruct partially could look like this:
The following properties are known:
It consists only of alternating plateau (high/low).
So the first derivation is zero ...
0
votes
0answers
33 views
Optimized 2D Convolution library in C for CPU?
I am doing convolutions with a large amount of small images ( 36*36 or so ) and small filters ( 3*3 to 5*5 ). So a FFT-based solution is not what I am looking for. Perhaps a highly optimized and tuned ...
2
votes
2answers
141 views
How do convolution matrices work?
How do those matrices work? Do I need to multiple every single pixel? How about the upperleft, upperright, bottomleft and bottomleft pixels where there's no surrounding pixel? And does the matrix work ...
1
vote
1answer
51 views
Does Convolution Neural Network need normalized input?
I have trained a Convolution Neural Network, after comparing two normalizations,
I found that simple minus mean and divided by standard variance is better than scaling into [0, 1], it seems that the ...
0
votes
1answer
118 views
solving convolution for symbols and function in matlab
i want to solve a convolution in matlab for two heaviside functions,
the problem is that the matlab wont let me do this and pops an error saying:
??? Undefined function or method 'conv2' for input ...
1
vote
1answer
31 views
plot convolution in the time domain with octave
This plots but the result of conv is a vector of a new length and so t is usless to include in plot like plot(t, z1) %doesn't work!.
t = [-5:.1:10];
unit = @(t) 1.*(t>=0);
h1 = @(t) (3*t + ...
0
votes
2answers
44 views
Matlab's Conv2 equivalent in OpenCV
I have been trying to do Convolution of a 2D Matrix using OpenCV. I actually went through this code http://blog.timmlinder.com/2011/07/opencv-equivalent-to-matlabs-conv2-function/#respond but it ...
3
votes
3answers
150 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 ...
0
votes
1answer
62 views
Ron Mayer FFT convolution algorithm
Does anybody know anything about the Mayer FFT implementation (without me having to take quite a bit of time to study the code)?
I am attempting to perform a convolution, and the ifft appears to ...
0
votes
1answer
66 views
Realtime reverb algorithm with FFT
I am trying to create/implement a realtime reverb algorithm using FFT. I've tried FDN and other simpler algorithms but they just do not sound good enough.
So, doing a fast convolution by multiplying ...
1
vote
2answers
101 views
Blur image using Python-errors
I need to blur an image by taking a kernel K and averaging the values in the 2D array and setting the center value to the average of K. Here is the code I have written to do so...
def Clamp(pix):
...
0
votes
1answer
95 views
ComplexWarning when calling convolve2d() in SciPy, why?
When I run
from scipy.signal import convolve2d
convolve2d([[2, 2, 2], [1, 2, 3], [0, 1, 0]], [[0.5], [0.5]], 'valid')
I get
Warning (from warnings module):
File "C:\Program Files\Python ...
0
votes
1answer
57 views
R, Integrate at each point of array
I'm stuck with computing the integral at each point of an array. The idea is first to create a function ("Integrand"). Then, create a second function ("MyConvolve") that computes the necessary ...
0
votes
0answers
62 views
sliding window on 3d volume matlab
I need to slide a window over a 3d volume. The sliding is only on one layer of the 3d volume, i.e for each x,y with one specific z.
This is what I want to do in a loop:
for each x,y,z, for example: ...
2
votes
1answer
114 views
Matlab: Convolving or Correlating one vector with many other vectors
I have vector y, and vectors x1,x2,...,x50. I need to correlate or convolve y with each of the x vectors. I'm currently doing this in a FOR loop, but it is slow and I'm trying to find a way to do them ...
0
votes
1answer
125 views
Motion blur convolution matrix given an angle and magnitude
I have Java code that takes a convolution matrix (just a 2D double[][]) and applies it to an image. I'm trying to figure out how to create a matrix that will give a motion blur, given an angle (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
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 ...
0
votes
1answer
59 views
which filter is being use by get_convolve() function in CImg library
Which kind of filter is being used by CImg library's get_convolve() function(written in C)? Median or Gaussian or bilateral or some other?
I tried to understand the function so that I can use the ...
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 ...
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 ...
1
vote
2answers
547 views
Matlab: conv() -> fft() * fft() -> ifft() [duplicate]
Good day to everyone!
I tried to tackle the basic problem of obtaining the original signal from observing its convolution with some known impulse response.
But the results I get are somehow totally ...
0
votes
1answer
269 views
How can I plot a convolution in MatLab?
Can anyone explain to me how I would go about plotting a convolution in MatLab?
The function I am trying to plot is e^(-at)u(t)*u*t)
Thanks!
3
votes
3answers
199 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 ...
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 ...
1
vote
1answer
289 views
Android: fast bitmap blur?
I've been searching the past three days for a built-in, hardware-accelerated way of bluring a bitmap with android. I stumbled upon certain work-arounds like shrinking the bitmap and scaling it up ...
2
votes
1answer
116 views
Shapes not matching in numpy.convolve
Error message:
operands could not be broadcast together with shapes (603) (613)
What should I do?
Do both of the list need to be the same length?
Or should I zero-pad it?
Here's my code:
def ...
0
votes
0answers
200 views
Convolution filter in frequency domain. Step by step. Image
I have to do a convolution in frequency domain, and I'm not sure if I got the steps right.
I'm doing the fourier of image I FI=fft(I);
After that should I switch the quarters 1-3,2-4 or not?
...
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 ...
2
votes
2answers
120 views
Nested for loop to numpy convolve
How can I improve the speed of this function?
def foo(mri_data, radius):
mask = mri_data.copy()
ny = len(mri_data[0,:])
nx = len(mri_data[:])
for y in xrange(0, ny):
for x ...
1
vote
0answers
67 views
given f(x) and its FFT F(u), prove that df/dx = F(u)*2iupi/n [closed]
Given f(x) and its FFT F(u), I need to prove that df/dx = F(u)*2iu(pi)/n.
df/dx = f'(x) and n is the number of pixels of the one dimensional image f.
I tried to use the convolution theorem using ...
0
votes
0answers
32 views
Where to find filter matrix to test Image filtering
I implemented 2dfft convolution for image filtering, so far it was tested on small filter (biggest one was 9x9). I want to test it on some large filters, but I cannot find any. Can someone tell me ...
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
1answer
383 views
why fft accelerate the convolution calculation?
I am seeing a lot of literature in which they say the by using the fft one can reach a faster convolution. I know that one needs to get fft and and then ifft from the results, but I really do not ...
3
votes
2answers
312 views
Partial convolution in MATLAB
I have large matrix (image) and a small template. I would like to convolve the small matrix with the larger matrix. For example, the blue region is the section that I want to be used for convolution. ...
0
votes
2answers
115 views
Simplifying convoluted if-else conditions to check if len(list) =0 - Python
I am trying to check if sent1 or sent2 has zero length and if they have i want to set sent_witn_not_null as the list with non-zero list. But the if-else conditions, i've written seems convoluted. What ...
0
votes
0answers
43 views
correlation of 2X1 block vectors
please help me to find block correlation between two vectors.
e.g.1 vector is 2X1,and other vector.
i have done convolution on 2 input sequences,now i want to correlate this convolution result with ...
0
votes
1answer
106 views
how to do Zero pading in CUDA for covolution
hi i have to convolve two signals[ pulseMatrixRow[i] and pulse[i] ] using CUFFT. for that my code is
int main(int argc, char **argv)
{
FILE *fileWritePtr;
cufftComplex h_signal[NX*BATCH];
...
0
votes
0answers
122 views
Convolution of 2D Gauss with Cylinder in Mathematica
I want to convolute a 2D Gaussian with a cylinder function in Mathematica. Mathematica will however just create an empty function without error messages (i.e. it behaves normally), thus when plotting ...
0
votes
1answer
176 views
Convolution UIImage with GPUImage framework
I'm trying to use GPUImage3x3ConvolutionFilter of GPUImage framework but is not working.
This is my code, I only get a white image.
- (UIImage *)convolution:(UIImage *)inputImage{
...
2
votes
2answers
549 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
0answers
166 views
Reconstructing a hologram in matlab
The interference patterns in this post visualization of light waves superposition in matlab for an inline point-source hologram that would be captured by a CCD. I tried reconstructing backwards using ...
0
votes
1answer
194 views
Filtering image with fft
I am trying to apply filter to image using 2D FFT. I have filter matrix (convolution kernel etc), but if I want to use fft I need to expand filter and picture matrix to power of 2 square matrix.
...
0
votes
1answer
315 views
how to optimize convolution matrix in android
I am using Convolution Matrix for my android app for making image Emboss.
i have defined the class for it as:
public class ConvolutionMatrix {
public static final int SIZE = 3;
public double[][] ...










