资源简介

代码中实现了两个用于颜色转化的论文 1.《Color Transfer Between Images》对应类HistogramCT.h 2.《Color Transfer Based on Normalized Cumulative Hue Histograms》对应类HistogramCT.h

资源截图

代码片段和文件信息

// cv_hw2_ColorTransfer.cpp : Defines the entry point for the console application.
#include “stdafx.h“
#include 
#include “ReinHardCT.h“
#include “HistogramCT.h“

int _tmain(int argc _TCHAR* argv[])
{
freopen( “out.out“ “w“ stdout );
ReinHardCT reinhardCT;
if ( reinhardCT.LoadImage( “input_s.png“ “input_t.png“ ) )
{
reinhardCT.Solve();
}
HistogramCT histogramCT;
if ( histogramCT.LoadImage( “input_s.png“ “input_t.png“ ) )
{
histogramCT.Solve();
}
cvWaitKey(0);
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        530  2011-12-02 15:10  cv_hw2_ColorTransfer\cv_hw2_ColorTransfer.cpp

     文件       5226  2011-12-02 14:52  cv_hw2_ColorTransfer\cv_hw2_ColorTransfer.vcproj

     文件       1413  2011-12-06 16:54  cv_hw2_ColorTransfer\cv_hw2_ColorTransfer.vcproj.net35-PC.net 3.5.user

     文件       3546  2011-12-06 16:52  cv_hw2_ColorTransfer\HistogramCT.cpp

     文件        966  2011-12-06 16:27  cv_hw2_ColorTransfer\HistogramCT.h

     文件     164006  2011-12-01 20:56  cv_hw2_ColorTransfer\input_s.png

     文件     105521  2011-12-01 20:56  cv_hw2_ColorTransfer\input_t.png

     文件    8488560  2011-12-06 16:53  cv_hw2_ColorTransfer\out.out

     文件     193331  2011-12-06 16:52  cv_hw2_ColorTransfer\output_1.png

     文件     190555  2011-12-06 16:52  cv_hw2_ColorTransfer\output_2.png

     文件       1384  2011-12-01 12:16  cv_hw2_ColorTransfer\ReadMe.txt

     文件       8022  2011-12-06 16:22  cv_hw2_ColorTransfer\ReinHardCT.cpp

     文件       1471  2011-12-06 16:26  cv_hw2_ColorTransfer\ReinHardCT.h

     文件      10192  2011-12-06 16:52  cv_hw2_ColorTransfer\Release\BuildLog.htm

     文件        383  2011-12-06 16:52  cv_hw2_ColorTransfer\Release\cv_hw2_ColorTransfer.exe.intermediate.manifest

     文件    1061004  2011-12-06 16:52  cv_hw2_ColorTransfer\Release\cv_hw2_ColorTransfer.obj

     文件    1048576  2011-12-05 20:55  cv_hw2_ColorTransfer\Release\cv_hw2_ColorTransfer.pch

     文件    1059968  2011-12-06 16:52  cv_hw2_ColorTransfer\Release\HistogramCT.obj

     文件         67  2011-12-06 16:52  cv_hw2_ColorTransfer\Release\mt.dep

     文件    1090197  2011-12-06 16:52  cv_hw2_ColorTransfer\Release\ReinHardCT.obj

     文件      29621  2011-12-05 20:55  cv_hw2_ColorTransfer\Release\stdafx.obj

     文件     478208  2011-12-06 16:52  cv_hw2_ColorTransfer\Release\vc80.idb

     文件     454656  2011-12-06 16:52  cv_hw2_ColorTransfer\Release\vc80.pdb

     文件        307  2011-12-01 12:16  cv_hw2_ColorTransfer\stdafx.cpp

     文件        516  2011-12-01 12:16  cv_hw2_ColorTransfer\stdafx.h

     文件       1632  2004-11-21 20:22  WmlMath\include\DirectImport\WmlBandedMatrix.h

     文件       8102  2004-11-21 20:22  WmlMath\include\DirectImport\WmlBandedMatrix.inl

     文件       4806  2004-11-21 20:22  WmlMath\include\DirectImport\WmlGMatrix.h

     文件      17985  2004-11-21 20:22  WmlMath\include\DirectImport\WmlGMatrix.inl

     文件       2245  2004-11-21 20:22  WmlMath\include\DirectImport\WmlGVector.h

............此处省略158个文件信息

评论

共有 条评论