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).
0
votes
0answers
11 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 ...
6
votes
4answers
99 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
vote
0answers
21 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 ...
2
votes
1answer
33 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 ...
0
votes
0answers
30 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 ...
1
vote
1answer
44 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
99 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
29 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 + ...
-1
votes
1answer
42 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?
0
votes
2answers
40 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
138 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
57 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 ...
1
vote
2answers
99 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
88 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
56 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
59 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: ...
0
votes
1answer
62 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 ...
2
votes
1answer
109 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
119 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 ...
0
votes
1answer
54 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 ...
2
votes
2answers
127 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
2answers
490 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
244 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
192 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 ...
1
vote
1answer
270 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
111 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
197 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?
...
2
votes
2answers
116 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
66 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 ...
3
votes
1answer
227 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 ...
0
votes
0answers
31 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 ...
1
vote
1answer
354 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
309 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
112 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
1answer
40 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
104 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
117 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
171 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{
...
0
votes
1answer
186 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
298 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[][] ...
0
votes
0answers
163 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
587 views
Verify the convolution theorem
My main goal is to show that the convolution theorem works (just a reminder: the convolution theorem means that idft(dft(im) .* dft(mask)) = conv(im, mask)). I'm trying to program that.
Here is my ...
0
votes
1answer
265 views
convolution using DFT
im using the following code to calculate convolution of an image with a specified kernel(in my case gaussian). Everytime I get a different result and the result image is not even close to the one i ...
0
votes
0answers
304 views
Linear convolution signal - “conv” function in Matlab
I need to write codes in Matlab which transform one graph into the other. I mean:
INPUT:(signal x)
Pulse unit
Duration: 40
Pulse at time n = 0
OUTPUT: (signal y)
Sinusoidal pulse
Duration: 100
The ...
1
vote
2answers
228 views
Understanding The Convolution Matrix
I am learning about the Convolution Matrix, and I understand how they work, but I don't understand how to know before hand what the output of a Matrix will look like. For example lets say I want to ...
1
vote
1answer
121 views
filter convolution reflection boundary
i got big problem how to set the boundarys when i make convolution. We got this part of code, i already implemented the zero padding, but now i have to reflect the pixel values to the boundary.
bool ...
1
vote
1answer
342 views
GPU library that implements Image Convolution using cuFFT?
I've been using the image convolution function from Nvidia Performance Primitives (NPP). However, my kernel is fairly large with respect to the image size, and I've heard rumors that NPP's convolution ...
0
votes
0answers
96 views
Cross-platform Fortan library with modern equivalent of sfir1d function
I am working with some legacy Fortran code that calls a subroutine sfir1d. Googling for the subroutine name, I found that SGI used to ship some of this code in an SCSL library.
...
3
votes
0answers
77 views
Image/texture filters in PlayN (perhaps using opengl), how to approach?
I'm a rather skillful Java-developers with many years of knowledge regarding enterprise and the usual web-stuff but fairly new to game programming.
I'm currently trying PlayN and the first testbed is ...
1
vote
0answers
125 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 ...








