自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(17)
  • 收藏
  • 关注

原创 论文阅读:Unsupervised Domain Adaptation for Face Recognition in Unlabeled Videos

概述:Unsupervised Domain Adaptation for Face Recognition in Unlabeled Videos,ICCV 2017的文章,实现的是用domain adaptation技术将没有label 的视频数据迁移到图片识别网络中。作者:URL:http://openaccess.thecvf.com/content_ICCV_2017...

2018-10-19 23:00:19 1655

原创 论文阅读:Neural Aggregation Network for Video Face Recognition

Title:Neural Aggregation Network for Video Face Recognition,微软亚研院CVPR2017的paper,实现的是利用一个attention机制对输入的一个set的人脸进行加权,得到一个人脸的特征。作者:URL:https://arxiv.org/abs/1603.05474Motivation:希望输入一个set的...

2018-10-19 21:46:39 1366

原创 论文阅读:Detail-Preserving Pooling in Deep Networks

Title:Detail-Preserving Pooling in Deep NetworksURL:https://arxiv.org/pdf/1804.04076.pdf概述CVPR2018的文章,提出了一种保存细节的pooling层,且该层可微。可以代替max-pooling层,实现性能的提升。作者:Motivation:作者认为average-pool...

2018-10-19 20:56:08 1142

原创 论文阅读:Multi-Task Convolutional Neural Network for Pose-Invariant Face Recognition

概述:TIP2018的文章,实现的是基于Multi-task的网络实现大pose的人脸识别。作者:url:https://ieeexplore.ieee.org/document/8080244Motivation:Multi-task(MTK)的网络对于task之间往往会相互促进。人脸识别任务可以分为主任务:抛开pose/光照/表情的人脸识别,以及pose光照表情...

2018-10-19 16:02:18 1200

原创 论文阅读:DREAM block: Pose-Robust Face Recognition via Deep Residual Equivariant Mapping

下载链接:https://arxiv.org/abs/1803.00839概述        商汤科技2018的CVPR的文章,简称DREAM block。实现的是大角度的人脸识别,与传统的先转正人脸再识别,改文章实现了特征层面的转化,实现方式是在特征层attach一个残差网络,对提取的侧脸特征进行修正,让侧脸特征尽量贴近正脸特征,即:  其中,gamma和人脸侧脸的程度相...

2018-10-12 18:32:38 1063

原创 论文阅读:Disentangled Representation Learning GAN for Pose-Invariant Face Recognition

ICCV2017的文章,主要使用multi-task的GAN网络来提取pose-invariant特征,同时生成指定pose的人脸。下载链接:http://openaccess.thecvf.com/content_cvpr_2017/papers/Tran_Disentangled_Representation_Learning_CVPR_2017_paper.pdf作者:M...

2018-10-12 14:30:45 1462

原创 c++之引用和指针的区别和联系

区别:1 引用不能为空(必须初始化),指针可为空。int &a; // errorint *a; // ok2 引用关系一旦被建立,则不能被解除,而指针可以指向别人。int x = 1, y = 2;int &a = x;a = y; // x = y = 2执行后,x=2, y=2int x = 1, y = 2;int *a = &x;a = &y;

2017-07-16 18:06:00 144

原创 tensorflow运行mnist例程第99次迭代cuda出错

新手,在run 例程中的mnist_with_summaries.py的时候在第99次迭代出现问题:找不到libcupti.so文件,以为是cuda没配置好,试了export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/cuda/lib64"export CUDA_HOME=/usr/local/cuda结果没用,才发现这里面根本没有该文

2017-06-27 14:22:58 270

原创 int x = -2147483648

直接写 int x = -2147483648 在vs 2013 里会报错,因为在编译的时候, -2147483648 当做一个表达式, 用一个int 型的2147483648 当做中间变量, 然而,int型的2147483648 超出了范围,所以编译器把它转化为unsigned int类型,然后前面又有一个负号,所以报错:错误 10 error C4146: 一元负运算符应用于无符号类型

2017-06-25 20:18:01 803

原创 Adversarial Discriminative Domain Adaption 阅读笔记

文章发表于 CVPR 2017文章利用GAN网络的思想用于cross-domain识别

2017-06-20 17:32:57 14723 3

原创 c++用cin和getline实现输入回车结束输入

今天做一道测试题遇到了一个麻烦,我想要先读入一个字符串,再读入一个整数,循环往复,直到字符串是空,也就是说回车键结束循环。最开始的想法是:string s;int d;while(cin>>s){ cin>>d; // precess}但是,发现其实按enter键并不会结束,只有d的输入不是整数,才会结束。或者ctrl+Z, 查了下资料,原因是,cin>>s是有

2017-03-17 17:43:58 15812

原创 LeetCode笔记:39. Combination Sum

Given a set of candidate numbers (C) (without duplicates) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The same repeated number may be chosen

2017-02-18 12:59:03 190

原创 LeetCode笔记:38. Count and Say

The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1 is read off as "one 1" or 11.11 is read off as "two 1s" or 21.21 is read off as 

2017-02-17 17:10:39 124

原创 LeetCode笔记:37. Sudoku Solver

回溯法解决数独问题:核心代码: bool solveSudoku(vector> &board, int i, int j) { if(i==9) return true; if(j==9) return solveSudoku(board, i+1, 0); if(board[i][j] != '.') return solveSudo

2017-02-17 17:07:13 152

原创 leetcode笔记:34. Search for a Range

Given an array of integers sorted in ascending order, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the order of O(log n).If the

2017-02-17 11:09:04 221

原创 leetcode笔记:33. Search in Rotated Sorted Array

题目要求:Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).You are given a target value to search. If

2017-02-13 16:38:33 274

原创 leetcode笔记:32.Longest Valid Parentheses

题目要求:string s 只包含 '(' 和 ‘)’ 寻找最长valid长度。Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.For "(()", the l

2017-02-13 12:54:01 291

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除