HISTMEAN - Mean feature derived from (co)occurrence matrices.
Contents
Description
Calculate the mean feature defined in [HSD73] from (co)occurrence matrices.
This feature measures the average A of the greylevel within an image as [ST99]:
- GLCM case - with
the greylevel joint probability of the greylevel pair
:
- GLOV case - with
the probability of the greylevel
:
Syntax
M = HISTMEAN(Pij);
References
See HISTCONTRAST.
See also
Ressembles: HISTCONTRAST, HISTENERGY, HISTHOMOGENEITY, HISTVARIANCE, HISTENTROPY2, HISTENTROPY10, HISTMAXIMUM, HISTDISSIMILARITY, HISTIDIFFERENCE, HISTCORRELATION, LOCALGLCM2D, LOCALGLOV2D, LOCALGLSDV2D.
Function implementation
function M = histmean(pIJ,varargin) M = mean (pIJ(:)); end % end of histmean