1
vote
0answers
126 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 ...
0
votes
0answers
202 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 ...
0
votes
1answer
262 views

Buffered Block Convolution Using Overlap-Save

So, I'm currently implementing the overlap-save method of block convolution in matlab, and having some trouble doing so. My implementation is using a buffered input in order to do real-time ...
1
vote
2answers
784 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 ...