mathematical operation on each element of gpuArray

How can i do mathematical operation on each element of gpuArray with the equation below? s = 2r(i, j) − r(i, j +1) + r(i, j −1). here r is the image matrix. I've written the code below:
im = imread('(HTC-1-M7)1.jpg');
tic
img = gpuArray(im);
for j =2: size(im,2) -1
A(:,:,:) = 2*img(:, :,:) -img(:,j+1,:) + img(:, j-1,:);
end
B = gather(A);
toc
Is there anyway to apply equation on each element of gpuarray with function like arrayfun without using loop? Thanks in advance.

2 comentarios

Are you certain that it is not a 2nd order differencing filter that you want:
s = 2r(i, j) r(i, j +1) - r(i, j 1)
Rouhan Noor
Rouhan Noor el 22 de En. de 2018
Editada: Rouhan Noor el 22 de En. de 2018
actually I found it from a research paper from IEEE. They derive this equation for row wise(x-axis) second order differentiation. But i have come to know about imgradientxy function, not sure this function does the same stuff like this equation or not.

Iniciar sesión para comentar.

Respuestas (1)

Matt J
Matt J el 22 de En. de 2018
Editada: Matt J el 22 de En. de 2018
B=gather( imfilter(gpuArray(img), [+1,2,-1]) );

4 comentarios

Rouhan Noor
Rouhan Noor el 22 de En. de 2018
actually I found it on a research paper from IEEE. They derive this equation for row wise(x-axis) second order differentiation. But i have come to know about imgradientxy function, not sure this function does the same stuff like this equation or not.
Rouhan Noor
Rouhan Noor el 22 de En. de 2018
if you don't mind could you explain the code how does it works? I'm newbie in matlab.
Rouhan Noor
Rouhan Noor el 22 de En. de 2018
Is there any builin function in matlab to determine the second order derivative of image like the equation above?
Matt J
Matt J el 22 de En. de 2018
Editada: Matt J el 22 de En. de 2018
B=gather( diff(gpuArray(img),2,2) );

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Preguntada:

el 22 de En. de 2018

Editada:

el 22 de En. de 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by