How to calculate gradient features of an image?
Show older comments
My code is:
a = imread('C:\Users\DELL\Desktop\01_test.tif');
[Gx, Gy] = gradient(a);
[Gmag, Gdir] = gradient(Gx, Gy);
figure, imshow(Gmag, []), title('Gradient magnitude') figure, imshow(Gdir, []), title('Gradient direction') title('Gradient Magnitude (Gmag) and Gradient Direction (Gdir) using Sobel method') figure; imshowpair(Gx, Gy, 'montage'); axis off; title('Directional Gradients, Gx and Gy, using Sobel method')
error is:
??? Error using ==> rdivide Integers can only be combined with integers of the same class, or scalar doubles.
Error in ==> gradient at 75 g(2:n-1,:) = (f(3:n,:)-f(1:n-2,:))./h(:,ones(p,1));
1 Comment
Guillaume
on 22 Oct 2014
Please use the {} Code button to format your code.
And what is your question exactly?
Answers (2)
Guillaume
on 22 Oct 2014
You left out the important bit of the error, which is the one that told you on which line of your code the error occurred. I assume it's the
[Gmag, Gdir] = gradient(Gx, Gy);
10 Comments
Guillaume
on 22 Oct 2014
We still don't know which line of your code is giving the error as you've not told us.
A possible cause for error is that your image is of type uint8 or some other integer type, which gradient may not work with. Assuming, it is a greyscale image, convert it to double:
[Gx, Gy] = gradient(double(a));
Guillaume
on 22 Oct 2014
As said in my original answer, the 2nd argument to gradient must be a scalar value and indicates the scaling of the 1st argument. So your
[Gmag, Gdir] = gradient(Gx, Gy);
is never going to work.
What are you trying to calculate there?
Maninder
on 22 Oct 2014
Guillaume
on 22 Oct 2014
it looks to me that you're trying to replace some code that uses some features of the image processing toolbox with one that doesn't. You can't just replace a function name by another and hope for the best. The code that would work is:
[Gx, Gy] = imgradientxy(a);
[Gmag, Gdir] = imgradient(Gx, Gy);
Now if you don't have access to these functions, your best bet (short of upgrading) is to rewrite these functions yourself.
Maninder
on 22 Oct 2014
Malik Zulqarnain
on 25 Apr 2018
how i can calculate high gradient values of image
Munshida P
on 25 Aug 2019

Munshida P
on 25 Aug 2019
how to calulate the average gradient ?
i have calculated Gx,Gy,Gmag,Gdir
Munshida P
on 24 Aug 2019
0 votes
how to calculate average gradient of an image
6 Comments
Walter Roberson
on 24 Aug 2019
[Gmag, Gdir] = imgradient(YourGrayscaleImage, 'prewitt');
average_gradient = mean2(Gmag);
Munshida P
on 24 Aug 2019
this equation is used to get the clarity of the image ?isnt it?
Walter Roberson
on 24 Aug 2019
Edited: Walter Roberson
on 24 Aug 2019
No, I would not think so. It gives some vague information about how abrupt changes are in the image, but that does not relate much to "clarity". Consider that you can have a very clear picture of a chess board: with the sharp transitions between black and white, you would have a number of high-magnitude gradient edges; does that mean the image is not clear?
Munshida P
on 25 Aug 2019
yaaaa....i understand
how can i calculate this?please help me sir

Walter Roberson
on 25 Aug 2019
[Gmag, Gdir] = imgradient(YourGrayscaleImage, 'prewitt');
average_gradient = sum(double(Gmag(:))) ./ ((size(Gmag,1)-1) .* ((size(Gmag,2)-1).*sqrt(2));
Munshida P
on 25 Aug 2019
Thank you sir. I will try it now
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!