Hi all, Can any one tel me the command in matlab to calculate the 'mean intensity gradiënt' of image?

1 Kommentar

Rik
Rik am 2 Apr. 2018
That would depend on what it is exactly what you mean with mean intensity gradient. It sounds like you need to calculate the gradient with respect to some direction, and then calculate a mean. Should the output be an image, a vector, or a value? First understanding your method before you start coding is very important.
Have a read here and here. It will greatly improve your chances of getting an answer.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

DGM
DGM am 8 Okt. 2024

0 Stimmen

Here's my guess
% a uint8 grayscale image
inpict = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/111239/Toner_spikkelpatroon.jpg');
inpict = rgb2gray(inpict);
% gradient magnitude (in uint8-scale)
Gmag = imgradient(inpict);
% mean gradient magnitude
meanGmag = mean(Gmag,'all')
meanGmag = 60.0308
% distribution
histogram(Gmag)

Gefragt:

am 2 Apr. 2018

Beantwortet:

DGM
am 8 Okt. 2024

Community Treasure Hunt

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

Start Hunting!

Translated by