find gradient using sobel mask operator in matlab

15 views (last 30 days)
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.

Answers (1)

Image Analyst
Image Analyst on 25 Feb 2017
Why? Why not simply use imgradient() to get the Sobel filtered image?
  2 Comments
DIWAKAR KUMAR
DIWAKAR KUMAR on 25 Feb 2017
please tell me how to quantize gradient direction into eight zone and find feature vector for the image?

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!