IBSM - Distortion Evaluation MSE_images 계산 //General MSE Y_i,j : a sample of an original image Y'_i,j : a sample of a distorted image n : the width of both buffers in pixels // image buffer의 폭 원본 이미지의 sample과 distorted image의 sample을 비교하여 MSE를 계산한다. (차이의 제곱의 평균) maskRef / maskDis 에 따라 mask[i,k] 채우기 앞으로의 과정에서 mask가 1인 부분에 대해서만 처리하기 위해, 공식들을 필요에 맞게 아래와 같이 변형한다. mask[i,j]는 maskRef와 MaskDis와 같은 크기의 ..