摘要: DeepID人脸识别算法之三代 转载请注明:http://blog.csdn.net/stdcoutzyx/article/details/42091205 DeepID,目前最强人脸识别算法,已经三代。 如今,深度学习方兴未艾,大数据风起云涌,各个领域都在处于使用深度学习进行强突破的阶段,人脸识别 阅读全文
posted @ 2016-08-24 15:35 whowhoha 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 引入 随着深度学习的出现,CV领域突破很多,甚至掀起了一股CV界的创业浪潮,当次风口浪尖之时,Google岂能缺席。特贡献出FaceNet再次刷新LFW上人脸验证的效果记录。 本文是阅读FaceNet论文的笔记,所有配图均来自于论文。 转载请注明:http://blog.csdn.net/stdco 阅读全文
posted @ 2016-08-24 15:16 whowhoha 阅读(823) 评论(0) 推荐(0) 编辑
摘要: DeepFace基本框架 人脸识别的基本流程是: 人脸对齐流程 分为如下几步: a. 人脸检测,使用6个基点 b. 二维剪切,将人脸部分裁剪出来 c. 67个基点,然后Delaunay三角化,在轮廓处添加三角形来避免不连续 d. 将三角化后的人脸转换成3D形状 e. 三角化后的人脸变为有深度的3D三 阅读全文
posted @ 2016-08-24 14:58 whowhoha 阅读(2219) 评论(0) 推荐(0) 编辑
摘要: Reverse Words in a String 单词取反 whowhoha@outlook.com Question: Given an input string s, reverse the string word by word. For example, given s = "the sk 阅读全文
posted @ 2016-08-06 09:03 whowhoha 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Implement strstr() 实现strstr函数功能 whowhoha@outlook.com Question: Implement strstr(). Returns the index of the first occurrence of needle in haystack, or 阅读全文
posted @ 2016-08-06 09:02 whowhoha 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Valid Palindrome回文数 whowhoha@outlook.com Question: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignor 阅读全文
posted @ 2016-08-06 09:01 whowhoha 阅读(124) 评论(0) 推荐(0) 编辑
摘要: Two Sum II – Input array is sorted whowhoha@outlook.com Question: Similar to Question [1. Two Sum], except that the input array is already sorted in a 阅读全文
posted @ 2016-08-06 09:00 whowhoha 阅读(219) 评论(0) 推荐(0) 编辑
摘要: Question: Design and implement a TwoSum class. It should support the following operations: add and find. add(input) – Add the number input to an inter 阅读全文
posted @ 2016-08-06 09:00 whowhoha 阅读(98) 评论(0) 推荐(0) 编辑
摘要: leetcode 练习1 two sum whowhoha@outlook.com 问题描述 Given an array of integers, return indices of the two numbers such that they add up to a specific targe 阅读全文
posted @ 2016-08-04 20:25 whowhoha 阅读(111) 评论(0) 推荐(0) 编辑
摘要: Ch2算法基础 whowhoha@outlook.com 2.1 插入排序 输入:n个数的一个序列〈a1,a2,…,an〉。 输出:输入序列的一个排列〈a′1,a′2,…,a′n〉,满足a′1≤a′2≤…≤a′n。 我们希望排序的数也称为关键词。插入排序,插入排序的工作方式像许多人排序一手扑克牌。开 阅读全文
posted @ 2016-06-28 17:27 whowhoha 阅读(217) 评论(0) 推荐(0) 编辑