资源简介

图像显著性检测算法的论文及代码 matlab saliencydetection

资源截图

代码片段和文件信息

// ImgSaliency.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “Saliency.h“

bool SaliencyValidParameters(int argc char* argv[]);

int main(int argc char* argv[])
{
if (!SaliencyValidParameters(argc argv))
return 1;

string imgNameW = argv[1];
string gtImgW = argv[2];
string resultFileName = argv[4];
string salDir = string(argv[3]) + “\\“;

CmLog::LogLine(FOREGROUND_GREEN“Get saliency maps for images ‘%s‘ and save results to ‘%s‘\n“ imgNameW.c_str() salDir.c_str());
Saliency::Get(imgNameW salDir);

CmLog::LogLine(FOREGROUND_GREEN “Evaluate saliency maps according to ground truth results ‘%s‘\n“ gtImgW.c_str());
Saliency::Evaluate(gtImgW salDir resultFileName);
CmLog::LogLine(FOREGROUND_GREEN “Results saved to %s\n“ resultFileName.c_str());
return 0;
}


bool SaliencyValidParameters(int argc char* argv[])
{
if (argc != 5)
{
printf(“Usage: ImgSaliency inImgs tImgs salDir result\n“);
printf(“\tinImgs:\tInput images. e.g. ‘D:\\Src\\*.jpg‘\n“);
printf(“\ttImgs:\tGround truth results. e.g. ‘D:\\SrC\\*.bmp‘\n“);
printf(“\tsalDir:\tSaliency map saving directory. e.g. ‘D:\\Sal‘\n“);
printf(“\tresult:\tStatistic result show name. e.g. ‘D:\\EvaluateShow.m‘\n“);
return false;
}
CmLog::Set(“SalLog.txt“ false);
return true;
}

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

     文件        888  2011-02-27 20:57  ImgSaliency\ImgSaliency.sln

     文件       6412  2011-02-27 21:30  ImgSaliency\ImgSaliency.vcxproj

     文件       2211  2011-02-27 21:30  ImgSaliency\ImgSaliency.vcxproj.filters

     文件       1363  2011-02-27 21:53  ImgSaliency\ImgSaliencyMain.cpp

     文件         79  2011-02-27 21:30  ImgSaliency\Run bat file.txt

     文件      17150  2011-02-27 21:53  ImgSaliency\Saliency.cpp

     文件       2937  2011-02-27 21:53  ImgSaliency\Saliency.h

     文件        298  2010-11-01 14:00  ImgSaliency\stdafx.cpp

     文件       1981  2011-02-27 21:09  ImgSaliency\stdafx.h

     文件       1690  2010-11-01 14:00  ImgSaliency\HelpFunc\CmFile.cpp

     文件       1644  2010-11-01 14:00  ImgSaliency\HelpFunc\CmFile.h

     文件       3894  2010-11-01 14:00  ImgSaliency\HelpFunc\CmLog.cpp

     文件       1240  2010-11-01 14:00  ImgSaliency\HelpFunc\CmLog.h

     文件       1646  2010-11-01 14:00  ImgSaliency\HelpFunc\CmTimer.cpp

     文件        417  2010-11-01 14:00  ImgSaliency\HelpFunc\CmTimer.h

     文件       1846  2010-11-01 14:00  ImgSaliency\Segmentation\disjoint-set.h

     文件       2168  2010-11-01 14:00  ImgSaliency\Segmentation\segment-graph.h

     文件       2773  2010-11-01 14:00  ImgSaliency\Segmentation\segment-image.cpp

     文件       1578  2010-11-01 14:00  ImgSaliency\Segmentation\segment-image.h

     目录          0  2011-09-24 17:57  ImgSaliency\HelpFunc

     目录          0  2011-09-24 17:57  ImgSaliency\Segmentation

     目录          0  2011-09-24 17:57  ImgSaliency

----------- ---------  ---------- -----  ----

                52215                    22


评论

共有 条评论