对原始Lena图像三种整数的取直方图均衡化我要分享

Equalization of three integers of the original Len

matlab

关注次数: 228

下载次数: 0

文件大小: 90.81 kB

代码分类: 其他

开发平台: matlab

下载需要积分: 2积分

版权声明:如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

代码描述

中文说明:资源描述 对原始Lena 图像实现以下三种取整函数的直方图均衡化: 线性函数: tk= int[(L -1) tk+ 0.5] ; 对数函数: tk= int[( L-1)log(1+9tk) + 0.5] ; 指数函数: tk= int[(L -1)exp( tk-1) + 0.5] ; 实现: 1、 原始图像和分别采用上述三种方式均衡化后的图像; 2、 原始图像的直方图和上述三种方式对应均衡化后的直方图。


English Description:

Application backgroundThe original Lena  image histogram equalization to achieve the following three kinds of integral function:Linear function: tk=; int[  (L  -1) tk+; 0.5]   ;Logarithmic function: tk=; int[log (  L-1)   (1+9tk)   + 0.5] ;Exponential function: tk=; int[exp (L  -1)   (  TK-1)   + 0.5] ;Realization1,   the original image and the image after the equalization of the above three ways;2,   the histogram of the original image and the histogram of the above three ways.


代码预览