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 的新手,所以如果我的问题很简单,我很抱歉。并在互联网上进行了深入搜索,但找不到答案。
我正在尝试进行局部直方图均衡。我通过以下方式进行了全局直方图均衡:
T_histeq=histeq(I); subplot(2,2,2);imshow(T_histeq);title('全局直方图均衡应用图像');
T_histeq=histeq(I);
subplot(2,2,2);imshow(T_histeq);title('全局直方图均衡应用图像');
但是对于局部直方图均衡,我无能为力。我知道逻辑,但不能把它变成代码。
谢谢帮忙。。