资源简介
非常经典的彩色转移算法的原文及源代码,是学习彩色转移必须看的。
代码片段和文件信息
%performing the task of transfering color between images
%Function by Ruchir Srivastava
% See E. Reinhard et al Color Transfer Between Images in IEEE Computer Graphics and
% Application 21(5) 2001.
%Inputs: src and tgt are image matrices for source and target images
function colormatch(srctgt)
subplot(311);
imshow(src);title(‘Source‘);
subplot(312);
imshow(tgt);title(‘Target‘);
[eltalphatbetat]=RGB2lab(tgt);
[elsalphasbetas]=RGB2lab(src);
elp=impose(elselt); % to impose the color of source(src) on the target(tgt) image
alphap=impose(alphasalphat);
betap=impose(betasbetat);
im=lab2RGB(elpalphapbetap);
subplot(313);
imshow(uint8(im));title(‘Color transfered from source to target‘);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3329758 2013-09-05 11:19 Color transfer between images\49Color_Transfer_between_Images.pdf
文件 745 2013-05-08 16:19 Color transfer between images\colormatch.asv
文件 745 2013-05-08 16:39 Color transfer between images\colormatch.m
文件 290 2013-05-08 16:39 Color transfer between images\impose.asv
文件 226 2013-05-08 16:40 Color transfer between images\impose.m
文件 226 2013-05-08 16:34 Color transfer between images\impose1.asv
文件 674 2013-05-06 20:55 Color transfer between images\lab2RGB.m
文件 23358 2013-05-03 21:35 Color transfer between images\m1.jpg
文件 6327 2010-12-30 15:16 Color transfer between images\m2.jpg
文件 646 2013-05-06 20:54 Color transfer between images\RGB2lab.m
文件 7148 2007-08-14 15:40 Color transfer between images\source.jpg
文件 6968 2007-08-14 15:40 Color transfer between images\target.jpg
目录 0 2013-09-28 16:15 Color transfer between images
----------- --------- ---------- ----- ----
3377111 13
- 上一篇:PSO测试函数代码
- 下一篇:计算图像信噪比和峰值信噪比
相关资源
- 受限玻尔兹曼机matlab源代码
- matlab植物叶片分类
- OCR MATLAB OCR中英文段落的提取、分割
- ssim衡量两幅图像相似度的指标
- matlab的流体计算和传热
- Fuzzy Neural Network by matlab 四个不同的
- 手机拍摄图像的二维码的提取
- 利用四元数对彩色图像作图像处理
- LBP方法
- 织物疵点检测和识别系统
- SAO星表数据
- 粒子群算法路径规划动画演示
- 新型的配电网潮流计算的matlab源码
- 雷达交叉定位精度分析
- 磁流变减震器模型
- D2D的自适应链路仿真
- matlab实现的读取视频和音频
- matlab平台DCT算法压缩视频
- Softmax 函数处理
- 《精通Matlab数字图像处理与识别》(
- 5阶WENO有限差分法求解Sod型激波管问题
- foa 果蝇优化算法matlab程序
- CA元胞自动机源代码
- 应用条件随机场CRF 知识分割图像
- PSOGSA_v3
- 发动机悬置系统解耦率、固有频率以
- G-S算法matlab程序源代码
- DATCOM弹道计算工具
- matlab实现节点定位的三边定位算法
- CLAHE的matlab实现算法
评论
共有 条评论