Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 matlab 代码,其中用最小值减去图像,然后除以最大值。
我们为什么要这样做?
它看起来像这样:
I1 = I1 - min(I1(:)); I1 = I1 / max(I1(:));
比较不同的图像是图像处理中的一项常见任务。例如,考虑在不同照明条件下拍摄的物体的两张照片。为了比较图像,我们希望对图像进行归一化,使像素值共享一个共同的比例。