所以我希望计算图像中每个像素的值。我将在图像中读取,然后我需要将此图像分割为多个窗口,然后在每个窗口中移动每个像素并计算这些像素的值。
对于我如何处理这个或您认为可能有用的任何有用链接,是否有任何想法。
如果这更清楚,我有以下伪代码概述
Int w=8;
Int n=256;
Int nblock=n/w;
Double s=0;
For (int i=0;i<nblock;i++) {
For (int j=0;j<nblock;j++) {
// put the gray value of the content of the block (i,j) into an array for both images (one array per image)
// compute the mean, sd, covariance for the arrays you got
// use the equation of the structural similarity measure to get a value v en.wikipedia.org/wiki/Structural_similarity
s+=v;
}
}
v=v/(nblock*nblock)