摘要: 原文地址: http://www.hankcs.com/program/cpp/how_to_learn_c__.html 1.把C++当成一门新的语言学习(和C没啥关系!真的。); 2.看《Thinking In C++》,不要看《C++变成死相》; 3.看《The C++ Programming 阅读全文
posted @ 2017-09-01 16:06 VincentCheng 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 一、基础概念 1. projective transformation = homography = collineation. 2. 齐次坐标:使用N+1维坐标来表示N维坐标,例如在2D笛卡尔坐标系中加上额外变量w来形成2D齐次坐标系$(x,y) \Rightarrow (x,y,w)$ 齐次坐标 阅读全文
posted @ 2017-08-10 10:07 VincentCheng 阅读(10894) 评论(0) 推荐(0) 编辑
摘要: Contribution: 1) Systematic interpretation to existing face sketch synthesis methods. 2) Bayesian face sketch synthesis: apply the spatial neighboring 阅读全文
posted @ 2017-07-31 18:35 VincentCheng 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 一、基础概念 1. 相似度(similarity): 两个对象相似程度的数值度量,通常相似度是非负的,在[0,1]之间取值 相异度(disimilarity): 两个对象差异程度的数值度量,通常也是非负的,在[0,1]之间取值,0到$\infty$也很常见 我们使用邻近度(proximity)表示相 阅读全文
posted @ 2017-07-31 16:37 VincentCheng 阅读(2151) 评论(0) 推荐(0) 编辑
摘要: 最近在看C++ primer plus,感觉函数与指针这一章难点比较多,记写笔记,加强理解. From C++ Primer Plus: Chapter 7 Function:C++ Programming Modules 1. 如何声明函数指针? 和函数原型类似: 需要声明指针指向函数的返回值和参 阅读全文
posted @ 2017-07-28 21:26 VincentCheng 阅读(473) 评论(0) 推荐(0) 编辑
摘要: Paper: Object Recognition from Scale-Invariant Features Sorce: http://www.cs.ubc.ca/~lowe/papers/iccv99.pdf SIFT 即Scale Invariant Feature Transfrom, 尺 阅读全文
posted @ 2017-07-26 21:17 VincentCheng 阅读(352) 评论(0) 推荐(0) 编辑
摘要: Improved Textured Networks: Maximizing quality and diversity in Feed-Forward Stylization and Texture Synthesis https://arxiv.org/abs/1701.02096v1 本文最主 阅读全文
posted @ 2017-07-26 21:16 VincentCheng 阅读(891) 评论(0) 推荐(0) 编辑
摘要: 一、概念 特征选择feature selection:也被称为variable selection或者attribute selection. 是选取已有属性的子集subset来进行建模的一种方式. 进行特征选择的目的主要有: 简化模型,缩短训练时间,避免维数灾难(curse of dimensio 阅读全文
posted @ 2017-07-23 10:23 VincentCheng 阅读(6985) 评论(0) 推荐(0) 编辑
摘要: 一、基本概念 角点corner:可以将角点看做两个边缘的交叉处,在两个方向上都有较大的变化。具体可由下图中分辨出来: 兴趣点interest point:兴趣点是图像中能够较鲁棒的检测出来的点,它不仅仅局限于角点. 也可以是灰度图像极大值或者极小值点等 二、Harris角点检测 Harris 算子是 阅读全文
posted @ 2017-07-11 17:21 VincentCheng 阅读(4257) 评论(0) 推荐(0) 编辑
摘要: 一、pip的安装 1. 将"D:\Python27\" 和 "D:\Python27\Scripts"设置到环境变量当中 2. 安装setup tools 将 https://bootstrap.pypa.io/ez_setup.py保存到安装路径 运行:python ez_setup.py 3. 阅读全文
posted @ 2017-07-06 21:12 VincentCheng 阅读(246) 评论(0) 推荐(0) 编辑