イメージを最小値で減算し、最大値で割るmatlabコードがあります。
なぜそうするのですか?
次のようになります。
I1 = I1 - min(I1(:));
I1 = I1 / max(I1(:));
イメージを最小値で減算し、最大値で割るmatlabコードがあります。
なぜそうするのですか?
次のようになります。
I1 = I1 - min(I1(:));
I1 = I1 / max(I1(:));
It is a common task in image processing to compare different images. For example, consider two photos of an object taken under different illumination conditions. In order to compare the images, we would like to normalize the images so that pixel values share a common scale.