Tagged Questions
0
votes
2answers
45 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 ...
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
126 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 ...
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
290 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 ...
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 ...
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
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{
...
1
vote
2answers
236 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
358 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
204 views
Convolution with mirror boundary conditions Java
I'm trying to make a convolution using mirror boundary conditions.
I already figured out how to do it on the upper boundary but cannot make it on the bottom boundary. Here's my code
// Make the ...
-4
votes
1answer
647 views
2-Dimensional Convolution - How to implement in Java? [closed]
I've been banging the head against the wall for quite a bit now.
I'm used to working with Matlab's conv2 function, which does the convolution by itself.
However, I just fail to implement it ...
3
votes
1answer
277 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
334 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 = ...
4
votes
1answer
2k views
2D/3D plot of image processing filters
i tried to understand the 2D & 3D plotting function in Matlab, regarding to the image processing filters, like box-plots, gauss, mexican hats and so on...
I only got the kernel for the filters, ...
1
vote
2answers
418 views
1D Convolution without if-else statements (non-FFT)?
I've written a simple serial 1D convolution function (below). I'm also experimenting with GPU convolution implementations. This is mostly for my own curiosity; I'm trying to learn the performance ...
3
votes
1answer
647 views
Image processing - box filter smoothing
EDIT: My description of a box filter is very wrong (all weights should be the same in a box filter), but the answer provided does fix the problem in the picture. Namely the error of not making sure ...
0
votes
0answers
121 views
Using ConvolveOp in an android application
Is it possible to use ConvolveOp and Kerenel Classes in an android project
I have tried to import JRE system library to my build path but still i get error
java.lang.NoClassDefFound Error..
If not is ...
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 ...
0
votes
2answers
155 views
Convolution with a bias in Leptonica
I want to filter a pix with a convolution kernel but with a bias and i don't see how to "emulate" the Bias using Leptonica API.
So far i have:
PIX* pixs = pixRead("file.png");
L_KERNEL* kel = ...
2
votes
2answers
374 views
deconvolution between matrix and submatrix
I have a matrix a=[[1 2 3]; [4 5 6]; [7 8 9]] and a submatrix b=[[5 6];[8 9]].
Is there a method in matlab for deconvolving (a,b) ?
I am looking for a method fo recognize the presence of a submatrix ...
5
votes
3answers
650 views
Where to center the kernel when using FFTW for image convolution?
I am trying to use FFTW for image convolution.
At first just to test if the system is working properly, I performed the fft, then the inverse fft, and could get the exact same image returned.
Then ...
1
vote
1answer
190 views
SuperResolution and Laplacian Term
I'm writing a program that allows to preform the SuperResolution algorithm. In the book, on the way of restoration, they uses the discrete Laplacian operator. I must somehow multiply the matrix (my ...
2
votes
2answers
449 views
Best way to get data image for processing
i want to get data from uiimage to read rgb values. I want to use this data for convolution filters. In the internet i found only one method:
// First get the image into your data buffer
CGImageRef ...
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
0answers
137 views
Image processing custom filter 7 by 7
Lets say I have a 7 by 7 neighborhood around a pixel that looks like this
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31 32 33 34 35
36 37 38 39 40 ...
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 ...
3
votes
2answers
733 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 ...
1
vote
1answer
570 views
Code for image convolution not displaying an image properly?
So heres the deal: I tried simplifiying (to the user) how to execute convolution. I tried using this to run a Sobel filter and when i try to display the image (via jfram and image icon) the image icon ...
2
votes
2answers
206 views
Image rendering technique - for adding realistic text to existing photos
Curious if there are general tools out there for creating images that contain text (or possibly other elements) which are distorted to appear as an original part of the image. These "real" billboard ...
0
votes
1answer
220 views
2D-filter algorithm
Is there anyway to do this faster? I want to reduce the O(N^2) complexity to something lower. Note: The filter kernel is rotational symmetric around N/2.
for(unsigned int ...
3
votes
2answers
534 views
Convolution theory vs implementation
I study convolution in image processing as it is a part of the curriculum, I understand the theory and the formula but I am confused about its implementation.
The formula is:
What I understand
...
2
votes
1answer
538 views
FFT Convolution - Really low PSNR
I'm convoluting an image (512*512) with a FFT filter (kernelsize=10), it looks good.
But when I compare it with an image which I convoluted the normal way the result was horrible.
The PSNR is about ...
3
votes
2answers
1k views
Gaussian Blur with FFT Questions
I have a current implementation of Gaussian Blur using regular convolution. It is efficient enough for small kernels, but once the kernels size gets a little bigger, the performance takes a hit. So, I ...
2
votes
1answer
989 views
FFT Convolution - How to apply Kernel
I'm pretty new to Image Processing and found out that the FFT convolution speeds up the convolution with large kernel sizes a lot.
My question is, how can I apply a kernel to a image in frequency ...
1
vote
2answers
786 views
Applying a bank of image filters in Matlab
I need to filter an image using a bank of filters in Matlab. My first attempt was to use a simple for loop to repeatedly call the "imfilter" function for each filter in the bank.
I will need to ...
3
votes
1answer
2k views
Fast 2D convolution implementation?
I've made a CUDA program for 2D convolution and now want to compare it to some non-CUDA implementation to measure the speedup.
I could compare to my own implementation in plain C using the classical ...
11
votes
2answers
850 views
How can I determine if my convolution is separable?
What makes a convolution kernel separable? How would I be able to tell what those separable parts were in order to do two 1D convolutions instead of a 2D convolution>
Thanks
3
votes
1answer
610 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 ...
6
votes
2answers
1k views
How to use pre-multiplied during image convolution to solve alpha bleed problem?
i'm trying to apply a box blur to an transparent image, and i'm getting a "dark halo" around the edges.
Jerry Huxtable has a short mention of the problem, and a very good demonstration showing the ...
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 ...
2
votes
3answers
2k views
Fastest method to compute convolution
I have to apply a convolution filter on each row of many images. The classic is 360 images of 1024x1024 pixels. In my use case it is 720 images 560x600 pixels.
The problem is that my code is much ...
5
votes
2answers
1k views
How do I multiply the spectra of two images of different dimensions?
This is not a "programming" question. But I'm sure it's something that is widely known and understood in this community.
I have an image, x, and a much smaller image, y, and I need to convolve the ...




