Я бы предположил, что это среднее и стандартное отклонение в направлениях x
и y
.i
, вероятно, соответствует x
, а j
- y
.Хотя это только предположение.
РЕДАКТИРОВАТЬ: Это подтверждается просмотром кода функции.Я настоятельно рекомендую вам проверить это самостоятельно (просто введите edit graycoprops
), но вот соответствующая часть:
function Corr = calculateCorrelation(glcm,r,c)
...
% Calculate the mean and standard deviation of a pixel value in the row
% direction direction. e.g., for glcm = [0 0;1 0] mr is 2 and Sr is 0.
mr = meanIndex(r,glcm);
Sr = stdIndex(r,glcm,mr);
% mean and standard deviation of pixel value in the column direction, e.g.,
% for glcm = [0 0;1 0] mc is 1 and Sc is 0.
mc = meanIndex(c,glcm);
Sc = stdIndex(c,glcm,mc);