-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.xml
127 lines (81 loc) · 9.43 KB
/
feed.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>春风十里</title>
<description>Blog of Xu R, Studying, Living, Creating . Love U & Me
</description>
<link>http://xuchong.github.com/</link>
<atom:link href="http://xuchong.github.com/feed.xml" rel="self" type="application/rss+xml"/>
<pubDate>Fri, 17 Mar 2017 15:19:44 +0800</pubDate>
<lastBuildDate>Fri, 17 Mar 2017 15:19:44 +0800</lastBuildDate>
<generator>Jekyll v3.1.6</generator>
<item>
<title>Face Detection Dataset</title>
<description><h4 id="section">概要</h4>
<p>人脸检测属于 <strong>Object Detection</strong> 方向的一个子模块,通过机器学习进行人脸检测,需要大量的标注数据进行模型的训练,而经过最近的学习整理,分享几个比较合适的。</p>
<h5 id="wider-facehttpmmlabiecuhkeduhkprojectswiderface"><a href="http://mmlab.ie.cuhk.edu.hk/projects/WIDERFace/">WIDER FACE</a></h5>
<p><em>WIDER FACE</em> 数据集是一个人脸检测基准数据库,其中的图片是从已经公布的<a href="http://yjxiong.me/event_recog/WIDER/">WIDER</a>数据集上挑选出来的。它包含32203个图像和393703个人脸图像,在尺度,姿势,闭塞,表达等方面表现出了大的变化。<em>WIDER FACE</em> 数据集基于61个事件类型进行组织的。对于每一个事件类型,随机选取40%的数据作为训练集、10%的数据集作为验证集、50%的数据作为测试集。同时,<em>WIDER FACE</em> 数据集采用和 <a href="http://host.robots.ox.ac.uk:8080/pascal/VOC/">PASCAL VOC</a>数据集相同的评估度量策略。 和 <em>MALF</em>、_Caltech _ 数据集一样, 并不公开测试集的 ground truth (考试的时候,当然不公布正确答案啦)。用户被要求提交最终的预测文件,从而通过网站进行评估,给出结果。
<img src="http://oixrb0omv.bkt.clouddn.com/WIDER%20Face%20.jpg" alt="WIDER FACE" title="WIDER FACE" /></p>
<h5 id="ijba-ahttpswwwnistgovitliadimage-groupijba-dataset-request-form"><a href="https://www.nist.gov/itl/iad/image-group/ijba-dataset-request-form">IJBA-A</a></h5>
<p><em>IJBA-A</em> 数据集全称_IARPA Janus Benchmark A_,是由_IARPA_(the Intelligence Advanced Research Projects Activity)公开的数据集,包含24327个图像和49759个人脸,可以用于人脸的检测和识别。数据集需要进行申请,经过NIST(美国国家标准技术研究所)允许同意后,才能获取到。</p>
<h5 id="malfhttpwwwcbsriaaccnfaceevaluation"><a href="http://www.cbsr.ia.ac.cn/faceevaluation/">MALF</a></h5>
<p><em>MALF</em> 数据集全称_Multi-Attribute Labelled Faces_,是一个大型数据库,被设计用于野外细粒度人脸检测评估。网站提供了:
* 数据库的描述、标注和评估规则
* 如何下载数据库进行评估
* 如何向该网站提交你的检测结果,和他人进行对比
* 所有算法的性能对比</p>
<p>数据库包含 5,250 张图片和 11,931 张标注的人脸,图片都来自于互联网。</p>
<p><img src="http://oixrb0omv.bkt.clouddn.com/malf_intro.png" alt="MALF" title="MALF" /></p>
<h5 id="fddbhttpvis-wwwcsumassedufddbindexhtml"><a href="http://vis-www.cs.umass.edu/fddb/index.html">FDDB</a></h5>
<p><em>FDDB</em> 数据集全称_Face Detection Data Set and Benchmark_,是一个用于研究无约束条件下人脸检测问题的数据集。数据库包含 2,845 张图片和 5,171 张标注的人脸,图片都来自于 <em>Faces in the Wild</em> 数据集。</p>
<h5 id="afwhttpwwwicsucieduxzhuface"><a href="http://www.ics.uci.edu/~xzhu/face/">AFW</a></h5>
<p><em>AFW</em> 数据集全称_Annotated Faces in the Wild_,AFW数据集是使用Flickr(雅虎旗下图片分享网站)图像建立的人脸图像库,包含205个图像,其中有473个标记的人脸。对于每一个人脸都包含一个长方形边界框,6个地标和相关的姿势角度。数据库虽然不大,额外的好处是作者给出了其2012 CVPR的论文和程序以及训练好的模型。</p>
<p><img src="http://oixrb0omv.bkt.clouddn.com/AFW_results_small.jpg" alt="AFW" title="AFW" /></p>
</description>
<pubDate>Sun, 21 Aug 2016 11:01:43 +0800</pubDate>
<link>http://xuchong.github.com/dataset/facedetection/2016/08/21/face-detetion-dataset.html</link>
<guid isPermaLink="true">http://xuchong.github.com/dataset/facedetection/2016/08/21/face-detetion-dataset.html</guid>
<category>dataset</category>
<category>FaceDetection</category>
</item>
<item>
<title>小憩</title>
<description><h4 id="section">基本流程</h4>
<p>通过 <strong>Atom</strong> 撰写 <strong>Markdown</strong> 博客,使用 <strong>Git</strong> 管理博客的 <strong>Jekyll</strong> 代码,发布build后的html博客到Github上.</p>
<h4 id="section-1">后知后觉</h4>
<p>Blog还有很多地方可以进一步提升,包括界面的风格样式,流量和交互模块的添加,需要以后慢慢的打磨呀.</p>
<h4 id="section-2">深夜有感</h4>
<p>毕业、找工作的压力悄然而至,生活有些不开心了</p>
<p>既然选择了北京,那么就 <strong><em>北京</em></strong> 吧</p>
<h6 id="section-3">鱼儿有七秒的记忆</h6>
<p><img src="http://oixrb0omv.bkt.clouddn.com/fish_cartoon.jpg" alt="鱼鱼" title="鱼鱼" /></p>
</description>
<pubDate>Mon, 15 Aug 2016 21:01:52 +0800</pubDate>
<link>http://xuchong.github.com/life/2016/08/15/life-post.html</link>
<guid isPermaLink="true">http://xuchong.github.com/life/2016/08/15/life-post.html</guid>
<category>life</category>
</item>
<item>
<title>First Post</title>
<description><p>Posts 存放在 <code class="highlighter-rouge">_posts</code> 文件夹中,命名格式为: <code class="highlighter-rouge">YYYY-MM-DD-name-of-post.ext</code> .</p>
<p>静态网页可以是 <code class="highlighter-rouge">.md</code> 或者 <code class="highlighter-rouge">.html</code> 格式,存放在根目录或者非系统子文件夹下.</p>
<p>Windows下 <code class="highlighter-rouge">Jekyll</code> 的运行: <code class="highlighter-rouge">bundle exec jekyll server</code>.</p>
<p>相关的管理工具: <em>bundle</em> &amp; <em>gem</em></p>
<p><code class="highlighter-rouge">Jekyll</code> 的代码段样式为:</p>
<figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="k">def</span> <span class="nf">print_hi</span><span class="p">(</span><span class="nb">name</span><span class="p">)</span>
<span class="nb">puts</span> <span class="s2">"Hi, </span><span class="si">#{</span><span class="nb">name</span><span class="si">}</span><span class="s2">"</span>
<span class="k">end</span>
<span class="n">print_hi</span><span class="p">(</span><span class="s1">'Tom'</span><span class="p">)</span>
<span class="c1">#=&gt; prints 'Hi, Tom' to STDOUT.</span></code></pre></figure>
<hr />
<p><code class="highlighter-rouge">Jekyll</code> 官方文档:<a href="http://jekyllrb.com/docs/home">Jekyll docs</a>.</p>
<p><code class="highlighter-rouge">Jekyll</code> Github仓库:<a href="https://github.com/jekyll/jekyll">Jekyll’s GitHub repo</a>.</p>
<p><code class="highlighter-rouge">Jekyll</code> 论坛:<a href="https://talk.jekyllrb.com/">Jekyll Talk</a>.</p>
</description>
<pubDate>Fri, 05 Aug 2016 17:39:43 +0800</pubDate>
<link>http://xuchong.github.com/jekyll/2016/08/05/first-post.html</link>
<guid isPermaLink="true">http://xuchong.github.com/jekyll/2016/08/05/first-post.html</guid>
<category>jekyll</category>
</item>
</channel>
</rss>