【发布时间】:2018-06-05 08:26:48
【问题描述】:
我正在尝试使用以下 matlab 代码了解 MATLAB 的 histeq 函数。
clear all
S = imread('pout.tif');
[O,P] = histeq(S)
但是我看不懂P的意思,我找到了下面的描述。
[J,T] = histeq(I) returns the grayscale transformation T that maps gray levels in the image I to gray levels in J.
当我看到histeq output image 时,我可以将 3 部分分隔为 A、B、C,正如你所看到的。
我如何理解 A、B 和 C 中的具体含义?
【问题讨论】: