0
votes
1answer
105 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]; ...
1
vote
1answer
348 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 ...
10
votes
3answers
760 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 ...
3
votes
1answer
276 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, ...
4
votes
3answers
328 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
1answer
282 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 ...
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
184 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 ...
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 ...
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
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, ...
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
3answers
2k views

3d convolution in c++

I'm looking for some source code implementing 3d convolution. Ideally, I need C++ code or CUDA code. I'd appreciate if anybody can point me to a nice and fast implementation :-) Cheers