Tagged Questions
0
votes
2answers
42 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 ...
0
votes
1answer
55 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 ...
0
votes
1answer
266 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 ...
1
vote
1answer
824 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() ...
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 ...
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.
...
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
1answer
462 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, ...
0
votes
0answers
545 views
How to process 3d gaussian convolution with a 3d array or matrix in OpenCV
I have a 3d array like this.
int sz[] = {240, 240, 240};
Mat accumarray(3, sz, CV_32S, Scalar::all(0)) ;
And I want to process a 3d gaussian convolution on this array to blur the array. To make ...
0
votes
1answer
385 views
process 35 x 35 kernel using convolution method
Dear all, I would like to do a convolution using a 35 x 35 kernel. Any suggestion? or any method already in opencv i can use? Because now the cvfilter2d can only support until 10 x 10 kernel.
1
vote
3answers
1k views
OpenCV: Detect a black to white gradient in an area
I uploaded an example image for better understanding: http://www.imagebanana.com/view/kaja46ko/test.jpg
In the image you can see some scanlines and a marker (the white retangle with the circle in ...
