Tagged Questions
4
votes
2answers
73 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
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 ...
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 ...
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
94 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 ...
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 ...
2
votes
1answer
115 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 ...
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 ...
0
votes
2answers
114 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 ...
1
vote
1answer
830 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
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
430 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. ...
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, ...
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 ...
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 ...
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
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 ...
1
vote
1answer
380 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 ...
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 ...
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 ...
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 = ...
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.
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 ...
14
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, ...
1
vote
3answers
4k views
Convolution of two functions in Python
I will have to implement a convolution of two functions in Python, but SciPy/Numpy appear to have functions only for the convolution of two arrays.
Before I try to implement this by using the the ...
