find gradient using sobel mask operator in matlab
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am using following code to mask image using sobel mask .
%------------------- C is an image
for i=1:size(C,1)-2
for j=1:size(C,2)-2
%Sobel mask for x-direction:
Gx=((2*C(i+2,j+1)+C(i+2,j)+C(i+2,j+2))-(2*C(i,j+1)+C(i,j)+C(i,j+2)));
%Sobel mask for y-direction:
Gy=((2*C(i+1,j+2)+C(i,j+2)+C(i+2,j+2))-(2*C(i+1,j)+C(i,j)+C(i+2,j)));
%The gradient of the image
%B(i,j)=abs(Gx)+abs(Gy);
B(i,j)=sqrt(Gx.^2+Gy.^2);
direction = atan(Gy./Gx)
end
end
My question is that sometimes gradient direction value is giving as "NaN", how to avoid it?
Second, how to quantize gradient direction into eight zone and find feature vector for the image? Please someone help me.
0 comentarios
Respuestas (1)
Image Analyst
el 25 de Feb. de 2017
Why? Why not simply use imgradient() to get the Sobel filtered image?
2 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!