资源简介
相关文章:Edge-Based Color Constancy 中提出闵可夫斯基模型,统一了两大经典白平衡算法,并衍生出gray edge算法,同时 Shades of Grey也符合该模型

代码片段和文件信息
% shows example of illuminant estimation based on Grey-World Shades of
% Gray max-RGB and Grey-Edge algorithm
%some example images
input_im=double(imread(‘building1.jpg‘));
%input_im=double(imread(‘cow2.jpg‘));
%input_im=double(imread(‘dog3.jpg‘));
figure(1);imshow(uint8(input_im));
title(‘input image‘);
% Grey-World
[wRwGwBout1]=general_cc(input_im010);
figure(2);imshow(uint8(out1));
title(‘Grey-World‘);
% max-RGB
[wRwGwBout2]=general_cc(input_im0-10);
figure(3);imshow(uint8(out2));
title(‘max-RGB‘);
% Shades of Grey
mink_norm=5; % any number between 1 and infinity
[wRwGwBout3]=general_cc(input_im0mink_norm0);
figure(4);imshow(uint8(out3));
title(‘Shades of Grey‘);
% Grey-Edge
mink_norm=5; % any number between 1 and infinity
sigma=2; % sigma
diff_order=1; % differentiation order (1 or 2)
[wRwGwBout4]=general_cc(input_imdiff_ordermink_normsigma);
figure(5);imshow(uint8(out4));
title(‘Grey-Edge‘);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 71519 2007-03-25 20:20 ColorConstancy\ColorConstancy\building1.jpg
文件 23207 2007-05-16 15:48 ColorConstancy\ColorConstancy\building1_cc.jpg
文件 997 2007-05-16 15:25 ColorConstancy\ColorConstancy\ColorConstancyDemo.m
文件 48214 2007-03-25 20:21 ColorConstancy\ColorConstancy\cow2.jpg
文件 303 2005-10-19 11:23 ColorConstancy\ColorConstancy\dilation33.m
文件 48346 2007-03-25 20:21 ColorConstancy\ColorConstancy\dog3.jpg
文件 1143 2005-06-10 15:33 ColorConstancy\ColorConstancy\fill_border.m
文件 974 2006-08-08 17:18 ColorConstancy\ColorConstancy\gDer.m
文件 3271 2018-04-03 15:52 ColorConstancy\ColorConstancy\general_cc.m
文件 830 2007-05-16 14:12 ColorConstancy\ColorConstancy\norm_derivative.m
文件 411 2005-04-29 15:14 ColorConstancy\ColorConstancy\set_border.m
目录 0 2018-04-03 15:52 ColorConstancy\ColorConstancy
目录 0 2015-05-05 11:45 ColorConstancy
----------- --------- ---------- ----- ----
199215 13
相关资源
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
评论
共有 条评论