Could someone explain me what does the "Sum Average" mean in equation 6th in the following link. http://murphylab.web.cmu.edu/publications/boland/boland_node26.html
Its related to creation of image texture (2d array) from an image (2d array). Thank you.
This is horrible notation. It's defined in this paper. The symbol $p$ is multiply overloaded with various meanings that are inconsistent when taken literally according to standard notational conventions. The symbol $p_{x+y}(k)$ doesn't refer to a quantity indexed by $x+y$; it's only a function of $k$, with "$x+y$" merely indicating that this is the probability for the sum of the indices to take the value $k$; that is, in conventional notation, $p_{x+y}(k)=\textsf{Pr}(X+Y=k)$. In terms of the probabilities $p(i,j)$ in the co-occurence matrix, $p_{x+y}(k)=\sum_{i+j=k}p(i,j)$. Thus, the quantity referred to as the "sum average", $\sum_kkp_{x+y}(k)$, is the expected value of the sum of the gray levels of adjacent pixels.