How to calculate gradient features of an image?
이전 댓글 표시
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
Guillaume
2014년 10월 22일
Please use the {} Code button to format your code.
And what is your question exactly?
답변 (2개)
Guillaume
2014년 10월 22일
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
Guillaume
2014년 10월 22일
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
2014년 10월 22일
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
2014년 10월 22일
Guillaume
2014년 10월 22일
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
2014년 10월 22일
Malik Zulqarnain
2018년 4월 25일
how i can calculate high gradient values of image
Munshida P
2019년 8월 25일

Munshida P
2019년 8월 25일
how to calulate the average gradient ?
i have calculated Gx,Gy,Gmag,Gdir
Munshida P
2019년 8월 24일
0 개 추천
how to calculate average gradient of an image
댓글 수: 6
Walter Roberson
2019년 8월 24일
[Gmag, Gdir] = imgradient(YourGrayscaleImage, 'prewitt');
average_gradient = mean2(Gmag);
Munshida P
2019년 8월 24일
this equation is used to get the clarity of the image ?isnt it?
Walter Roberson
2019년 8월 24일
편집: Walter Roberson
2019년 8월 24일
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
2019년 8월 25일
yaaaa....i understand
how can i calculate this?please help me sir

Walter Roberson
2019년 8월 25일
[Gmag, Gdir] = imgradient(YourGrayscaleImage, 'prewitt');
average_gradient = sum(double(Gmag(:))) ./ ((size(Gmag,1)-1) .* ((size(Gmag,2)-1).*sqrt(2));
Munshida P
2019년 8월 25일
Thank you sir. I will try it now
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!