资源简介
直方图均衡,图像去雾处理,是把原始图像的灰度直方图从比较集中的某个灰度区间变成在全部灰度范围内的均匀分布。直方图均衡化就是对图像进行非线性拉伸,重新分配图像像素值,使一定灰度范围内的像素数量
代码片段和文件信息
clc;
clear all;
close all;
img=imread(‘1.jpg‘);
img=rgb2gray(img);
subplot(121);
imshow(img[]);title(‘Original Picture‘);
[MN]=size(img);
%Histogram Caculation
img=double(img);
h=zeros(2561);
for i=1:M
for j=1:N
f=img(ij);
h(f+1)=h(f+1)+1;
end
end
subplot(122);
bar(h);grid;title(‘Original Histogram‘);
%Histogram Equalizing
hh=h/(M*N);
for k=1:256
c(k)=uint8(sum(hh(1:k))*255);
end
for i=1:M
for j=1:N
f=img(ij)+1;
histeqimg(ij)=c(f);
end
end
figure;
subplot(121);
imshow(histeqimg[]);title(‘Picture after Histogram Equalizing‘);
%Histog
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1293 2010-04-06 17:15 zhifangtujunhanghua.m
----------- --------- ---------- ----- ----
1293 1
相关资源
- imageCorrectForm 建立几何畸变模型
- MATLAB_image_process_with_PDE 运用偏微分方
- Graph_cut 几篇关于graph cut的论文
- imagefusion2836201
- multiimagepocs 对多帧图像进行超分辨率
- image_matching
- ImageSegmentation 多尺度分水岭变换分割
- BilateralFiltering
-
Theimagetextureanalyssba
sedonthefractaldime - imagesegmentation 压缩文件里有四种图像
- matlabimagetothefuzzy 本例中主要使用四个
- PDE_in_image_processing (1)MATLAB程序:其
- ImageMatlab Matlab数字图像处理
- CVPR10-LLC \“Locality-constrained Linear Cod
- image-fusion-and-detection-on-curvelet-wavelet
- MRI_image_segmentation
- image_processing 本程序是基于Matlab的米粒
- imagereconstruction 基于小波和插值的超分
- ImageSegament 基于遗传算法的图像分割
- sparse
- LCV “An efficientlocalChan–Vesemodelforima
- NSCT-SF-PCNN-ImageFusion-Toolbox
- image_enhangce_value
- Image-Restoration-with-BPNN 基于BP神经网络
- FCM-vs-ESSC 模糊聚类图像分割
- image-stitching 实验两张图片的拼接
- corner 角点检测的程序
- image-registration
- Image-SNR 可以计算图像的信噪比
- Khan2 数字图像copy-move篡改检测。特征
评论
共有 条评论