博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
直方图均衡化和规定化
阅读量:5370 次
发布时间:2019-06-15

本文共 614 字,大约阅读时间需要 2 分钟。

直方图均衡化

clear;close all;

A=imread('lena_gray_512.tif');
B=imadjust(A);
subplot(2,2,1); imshow(A); title('原始图像')
subplot(2,2,2); imhist(A); title('原始图像直方图')
subplot(2,2,3); imshow(B); title('均衡化图像')
subplot(2,2,4); imhist(B);  title('均衡化图像直方图')

直方图规定化

close all;clc;clear

I=imread('woman_darkhair.tif');
[counts,x]=imhist(I);
Q=imread('lena_gray_512.tif');
subplot(321);imshow(I);title('原始图像')
subplot(322);imhist(I);
subplot(323);imshow(Q);title('待处理图像')
subplot(324);imhist(Q);
M = histeq(Q,counts);    
subplot(325);imshow(M);title('规定化图像')
subplot(326);imhist(M);

转载于:https://www.cnblogs.com/yangykaifa/p/6933785.html

你可能感兴趣的文章
13.内存原理
查看>>
24.函数信号机制(本质上就是函数指针)
查看>>
The dependency `xxx` is not used in any concrete target.
查看>>
Bootstrap 中 下拉菜单和滚动监听插件(十一)(持续更新中。。。)
查看>>
团队-科学计算器-项目总结
查看>>
python 发邮件
查看>>
GraphQL入门
查看>>
幸福框架:应当如何使用和处理异常
查看>>
MQ:Introducing Advanced Messaging
查看>>
ok6410 android driver(11)
查看>>
【H3 BPM工作流程管理产品小故事】第五篇 必填与水印文本
查看>>
遥测的死区
查看>>
ORACLE百万记录SQL语句优化技巧
查看>>
iOS Core Animation学习总结(3)--动画的基本类型
查看>>
encodeURI()和encodeURIcomponent()的共同点和不同点
查看>>
ISO9126软件质量模型
查看>>
Android 关于expandableListView childrenView 点击改变颜色
查看>>
网络运维所有知识总结篇
查看>>
jasperreport_填充Report Templates
查看>>
phonegap 开发指南系列----简介(2)
查看>>