
Matlab图像模糊校正代码-Fuzzy-Contextual-Contrast-Enhancement_Code:此仓库包含我们关于...
5星
- 浏览量: 0
- 大小:None
- 文件类型:None
简介:
该仓库提供了基于MATLAB实现的图像模糊校正与对比度增强代码,采用模糊上下文模型优化图像质量。适用于各类需要提高图像清晰度的应用场景。
这段文字描述了一个存储库提供的MATLAB代码,用于执行论文“模糊上下文对比度增强”中的算法。该论文发表在2017年4月的IEEE Transactions on Image Processing杂志上,卷号为26,期数为4,页码范围从1810到1819。
以下是使用MATLAB运行代码的方法:
对于彩色图像:
i = imread(3096.jpg);
[Im_out, etime] = FCCE_Color(i);
figure(1); imshow(Im_out);
title(FCCIColor);
对于灰度图像:
i = imread(ruins.jpg);
[Im_out, etime] = FCCE_Gray(i);
figure(2); imshow(Im_out);
title(FCCEGray);
全部评论 (0)
还没有任何评论哟~


