摘要: 复杂环境下基于人脸的性别识别 阅读全文
posted @ 2013-04-06 21:18 zxwAAA 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 看到 const 关键字,C++程序员首先想到的可能是 const 常量。这可不是良好的条件反射。如果只知道用 const 定义常量,那么相当于把火药仅用于制作鞭炮。const 更大的魅力是它可以修饰函数的参数、返回值,甚至函数的定义体。《高质量编程C++指南》 const 是 constant 的缩写,“恒定不变”的意思。被 const 修饰的东西都受到强制保护,可以预防意外的变动,能提高程序的健壮性。1.用const修饰函数的参数 如果参数作输出用,不论它是什么数据类型,也不论它采用“指针传递”还是“引用传递”,都不能加 const 修饰,否则该参数将失去输出功能。 const... 阅读全文
posted @ 2013-04-06 21:14 zxwAAA 阅读(120) 评论(0) 推荐(0) 编辑
摘要: C++传值方式和传址方式(以交换函数为例) 阅读全文
posted @ 2013-04-02 18:43 zxwAAA 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: C++指针注意事项 阅读全文
posted @ 2013-04-02 13:38 zxwAAA 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 为什么叫C++而不叫++C 阅读全文
posted @ 2013-03-31 10:07 zxwAAA 阅读(629) 评论(0) 推荐(0) 编辑
摘要: C++ typedef 和 #define 阅读全文
posted @ 2013-03-30 16:53 zxwAAA 阅读(185) 评论(0) 推荐(0) 编辑
摘要: Face Detection The primary objective is to be able to detect faces and also analysis the facial feature and expression so as to identify attributes such as gender, smile, age of people and also whether the person is wearing glasses.Approach OpenCV library is used to detect and segment faces from vi. 阅读全文
posted @ 2013-03-30 14:03 zxwAAA 阅读(242) 评论(0) 推荐(0) 编辑
摘要: C++引用和指针的区别 阅读全文
posted @ 2013-03-30 11:07 zxwAAA 阅读(102) 评论(0) 推荐(0) 编辑
摘要: const_iterator 阅读全文
posted @ 2013-03-29 10:51 zxwAAA 阅读(344) 评论(0) 推荐(0) 编辑
摘要: C++容器类 阅读全文
posted @ 2013-03-29 08:43 zxwAAA 阅读(298) 评论(0) 推荐(0) 编辑