How to calculate the average gradient of an image?

34 ビュー (過去 30 日間)
Munshida P
Munshida P 2019 年 8 月 27 日
コメント済み: Munshida P 2019 年 9 月 13 日
i have tried this code.But the results are mismatching.
[Gmag, Gdir] = imgradient(X, 'sobel');
AG=abs((sum(sum(mode(Gmag))/(sqrt(2)))))
  3 件のコメント
Munshida P
Munshida P 2019 年 8 月 30 日
original image and enhanced image(DICOM format)
Munshida P
Munshida P 2019 年 8 月 30 日
Sir, i can't attach my dicom image here because,the file format is not supported.(.dcm)

サインインしてコメントする。

回答 (3 件)

Guillaume
Guillaume 2019 年 8 月 30 日
Missing from your equation, is the exact definition of G. You're currently using the sobel operator to compute the gradient and as documented in the algorithms section of imgradient whichever operator you use is going to give you vastly different results for the magnitude.
I suspect that your equation use a completely different definition than 'sobel' for G.
As asked by Raunak, for us to be able to tell you what is wrong, we need the actual source image and whatever you compare it to.

Bruno Luong
Bruno Luong 2019 年 8 月 30 日
AG=abs((sum(sum(mode(Gmag))/(sqrt(2)))))
I can't see the denominator factor (H-1)*(W-1). And Why you use MODE?
Those two errors explain discrepency already.
  7 件のコメント
Guillaume
Guillaume 2019 年 8 月 30 日
So far, the issue does not appear to be matlab but maths.
Munshida P
Munshida P 2019 年 8 月 30 日
k

サインインしてコメントする。


Raunak Gupta
Raunak Gupta 2019 年 8 月 30 日
Hi,
As per the formula you have mentioned above, the syntax for Calculating ‘AG’ is mistaken. For implementing the formula, you can use below commands.
%Here X is the array for which Gradient is to be calculated
[Gmag,Gdir] = imgradient(X,'sobel');
% Here since Gmag represent Magnitude of Gradient so no need to take absolute value
AG = sum(sum(Gmag))./(sqrt(2)*(size(X,1)-1)*(size(X,2)-1));
If you want to try other method for calculating gradient you may investigate ’method’ parameter in imgradient. Please keep in mind that imgradient works only for grayscale images and would not provide required results for RGB images. Here is the link to the documentation of imgradient.
  6 件のコメント
PPO POT
PPO POT 2019 年 9 月 13 日
編集済み: PPO POT 2019 年 9 月 13 日
This is my code, with this code you can browse image file and then calculate AG automatically,
[filename1,pathname] = uigetfile('*.*',' Select the Original Image ');
orgIM = imread(filename1);
% Pattern
%[Gmag, Gdir] = imgradient(I,'prewitt');
% 1] If test image is true color covert its to grayscale
if size(orgIM,3) == 3
testIM = rgb2gray(imread(filename1));
[Gmag,Gdir] = imgradient(testIM,'prewitt');
% Calcualte Average gradient
AG = sum(sum(Gmag))./(sqrt(2)*(size(testIM,1)-1)*(size(testIM,2)-1))
end
Munshida P
Munshida P 2019 年 9 月 13 日
info = dicominfo('MR-MONO2-12-an2');
X= dicomread(info);
imshow(X,[])
[Gmag,Gdir] = imgradient(X,'prewitt');
%Average gradient
AG = sum(sum(Gmag))./(sqrt(2)*(size(X,1)-1)*(size(X,2)-1 ))
got it....thank you sir

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by