资源简介

非常经典的彩色转移算法的原文及源代码,是学习彩色转移必须看的。

资源截图

代码片段和文件信息

%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


评论

共有 条评论