sukai.me sukai.me

sukai.me

sukai's blog

发表于 Oct 31, 2016. 发表于 Aug 24, 2016. 1 Classifying Search Windows. 发表于 Jul 30, 2016. 7月看了10 11篇论文 Face Alignment ,这占据了工作的大部分时间。 发表于 Jun 30, 2016. 算法导论 第9章 中位数和顺序统计量 正好讲到了这个问题,. 发表于 Jun 20, 2016. 发表于 Jun 19, 2016. Page 1 of 5.

http://www.sukai.me/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR SUKAI.ME

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.5 out of 5 with 8 reviews
5 star
0
4 star
4
3 star
4
2 star
0
1 star
0

Hey there! Start your review of sukai.me

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

1 seconds

FAVICON PREVIEW

  • sukai.me

    16x16

  • sukai.me

    32x32

CONTACTS AT SUKAI.ME

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
sukai's blog | sukai.me Reviews
<META>
DESCRIPTION
发表于 Oct 31, 2016. 发表于 Aug 24, 2016. 1 Classifying Search Windows. 发表于 Jul 30, 2016. 7月看了10 11篇论文 Face Alignment ,这占据了工作的大部分时间。 发表于 Jun 30, 2016. 算法导论 第9章 中位数和顺序统计量 正好讲到了这个问题,. 发表于 Jun 20, 2016. 发表于 Jun 19, 2016. Page 1 of 5.
<META>
KEYWORDS
1 board
2 links
3 archives
4 wiki
5 caffe blob源码阅读
6 caffe
7 本文仅用于整理阅读caffe源码过程中的记录,所写内容只确保本人看懂
8 阅读全文
9 face alignment summary
10 face alignment
CONTENT
Page content here
KEYWORDS ON
PAGE
board,links,archives,wiki,caffe blob源码阅读,caffe,本文仅用于整理阅读caffe源码过程中的记录,所写内容只确保本人看懂,阅读全文,face alignment summary,face alignment,以我目前所读论文为依据,现有算法大体上分为两种类型,2 directl,life,目前从宏,读 中位数和顺序统计量,algorithms,reading,读 你只是看起来很努力,ps 书名起得很假大空,明明只有part 1部分记录了有关努力的鸡汤,next
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

sukai's blog | sukai.me Reviews

https://sukai.me

发表于 Oct 31, 2016. 发表于 Aug 24, 2016. 1 Classifying Search Windows. 发表于 Jul 30, 2016. 7月看了10 11篇论文 Face Alignment ,这占据了工作的大部分时间。 发表于 Jun 30, 2016. 算法导论 第9章 中位数和顺序统计量 正好讲到了这个问题,. 发表于 Jun 20, 2016. 发表于 Jun 19, 2016. Page 1 of 5.

INTERNAL PAGES

sukai.me sukai.me
1

2016暑期总结 | sukai's blog

http://sukai.me/2016-summer

Published at Jul 30, 2016. 7月看了10 11篇论文 Face Alignment ,这占据了工作的大部分时间。 第一次师兄教了MatConvNet的使用,这是师兄们去年参加CVPR Face Age Estimation比赛的代码,听说当时拿了不错的名次,还因此出国参加了CVPR16 👍。 第二次,师兄介绍了比赛中Face Image的预处理过程,使用的是CUHK的 Five Facial Point Detection. 算法 4Th 的1 4章,全书就要看完了,还剩两章。 阅读些Deep Learning和Convolutional Nerual Networks相关的Paper和Tutorial. 至于寻找图片下拉刷新的Ajax Url,通过Chrome调试窗口的Network 本来还想用WireShark,无奈不会用,也没那个必要 就可以找到了,这点不难。 阅读3 4篇新论文 Face Alignment. 算法Trick 位操作很强大,可以用作枚举排列组合 Python中的itertools.combinations也可以快速生成排列.

2

Tags | sukai's blog

http://sukai.me/tag/index.html

3

读:中位数和顺序统计量 | sukai's blog

http://sukai.me/algorithms-order-statistic

Published at Jun 30, 2016. 算法导论 第9章 中位数和顺序统计量 正好讲到了这个问题,可以在不排序的情况下求解,并且时间复杂度接近O(n). 当n为奇数时,中位数的i=(n 1)/2;当n为偶数时,中位数的i=n/2和n/2 1. 该算法以快速排序算法为原型,采用分治法,基本思路是 任意选择一个元素作为key,基于key将数组分为两部分.左部分元素均小于等于key,右部分元素均大于key.如果key的下标idx正好等于(n 1)/2,那么key即为中位数.否则若idx (n 1)/2,那么递归去处理右部分,反之处理左部分. 不同于快速排序会递归处理划分的两边,而randomized select只处理换分的一边.经证明randomized select的期望运行时间为O(n). 和randomized select一样,select算法也是通过递归划分来寻找所需元素.但是该算法能保证得到对数组的一个好的划分.根据 算法导论 中描述,select算法的步骤为. 5如果i= k,返回x.否则,i k,处理低区.反之在高区寻找i-k小的元素.

4

Face Alignment Summary | sukai's blog

http://sukai.me/face-alignment-summary

Published at Aug 24, 2016. 1 Classifying Search Windows. 2 Directly Predict Key Point Positions or Shape Parameters. 1 基于模型 Model Based ,代表有AAM、ASM. 2 基于回归 Regression Based。 还可以细分为基于线性回归的,代表有CPR, LBF等 基于非线性回归的,代表有DCNN、CFAN、TDA等. 属于那种框架或模型 基于Model Cascaded 级联 模型 基于Deep Learning的非线性回归模型 等等. 优缺点 算法的Speed、Accuracy 是否利用特征点之间的相对位置关系 Geometric/Shape Constraints 以增强鲁棒性 对Occlusion、Pose Variations、Lighting的是够敏感. 它们提出的模型可以刻画出人脸图像,所以只需要求得特定人脸对应的模型参数 即Directly Predict Shape Parameters ,即可合成相应的人脸图像. 先前的工作如ASM、AAM利用参数化...

5

Archives | sukai's blog

http://sukai.me/archive/index.html

UPGRADE TO PREMIUM TO VIEW 14 MORE

TOTAL PAGES IN THIS WEBSITE

19

LINKS TO THIS WEBSITE

renhuanhuan.com renhuanhuan.com

春风花草香 | Life's monolog

http://renhuanhuan.com/2015/03/22/soochow

Logistic Regression in R. Linear Regression In R. Text Analytic in R. Logistic Regression in R. Linear Regression In R.

maywanting.wang maywanting.wang

vim快捷键备注 | May's Blog

http://maywanting.wang/2016/07/17/20160717vim-linux-remark

首先在项目更目录下输入命令ctags -R ( exclude= .js exclude= test. 查看原函数代码用ctrl }, 退出则是ctrl o. Hello ,Im May in Soochow University, and Now, Im a junior. This is my blog, believe it or not. And Theme by Jacman.

maywanting.wang maywanting.wang

May's Blog

http://maywanting.wang/page/3

初始化git的一些配置 安装了git之后,第一步就是配置用户名和邮箱,可以采用两种方式 1、git命令可以用以下命令直接配置 12$ git con. Hello ,Im May in Soochow University, and Now, Im a junior. This is my blog, believe it or not. And Theme by Jacman.

maywanting.wang maywanting.wang

linux 服务器配置 | May's Blog

http://maywanting.wang/2016/07/31/20160731linux-server-config

将 may 加入 root 组. Linux localhost.localdomain 2.6. El6x86 64 #1 SMP Tue May 31 21:57:07 UTC 2016 x86 64 x86 64 x86 64 GNU/Linux. Linux version 2.6. El6x86 64 (mockbuild@worker1.bsys.centos.org) (gcc version 4.4. Red Hat 4.4. GCC) ) #1 SMP Tue May 31 21:57:07 UTC 2016. 嗯 看来是red hat,还是64位操作系统,内核还是2.6,有点老. 将 may 加入 root 组. Usermod -g root May. 这样就可以把 may 这个用户加入到 root 组了,不过还可以设置sudo不用输入密码,这在之后的文章再介绍吧。 进入服务器的时候,bash则是最常用的 bash bash,不过我用的最舒服的还是 oh-my-zsh,所以肯定要改。 Oh-my-zsh 是基于 zsh 的,所以首先装 zsh. 将 may 加入 root 组.

maywanting.wang maywanting.wang

生命不息!折腾不止!!~ | May's Blog

http://maywanting.wang/2016/07/12/20160712life-chat

首先说奖品,专业组一等奖一台电脑 虽然各方面配置我的电脑完爆它 ,二等奖机械键盘 我有了 , 三等奖鼠标。 业余组一等奖无人机 这个还是非常好玩的 ,二等奖机械键盘 还来 ,三等奖书包 =。 女子组一等奖自行车 仔细看看配置也就一般啊 ,二等奖Kindle 我又有了 ,三等奖面包机 好 这个好玩。 Hello ,Im May in Soochow University, and Now, Im a junior. This is my blog, believe it or not. And Theme by Jacman.

maywanting.wang maywanting.wang

May's Blog

http://maywanting.wang/page/2

以下只是我在毕设系统中设计的权限管理的一套方案,算是第一次造轮子写这个,不成熟的地方还请指教 0.0 扯下权限控制 按照我的经验来说,权限控制的方式大体有两种 通过前台的隐藏来控制用户可以进行哪些操作 后台通过数据库中管理员分配的行为权限,查看该用户的角色和请求的行为是否. 简介   JSON(JavaScript Object Notation)最初是javascript对象的一种格式,后来越来越多的的高级语言也支持这种格式,PHP也不例外。 背景扯一下 暑假期间去实验室公司实习,然后碰到一个问题,其实也就是查找数据库数据,就是将商品的特定属性找出来,简化一下就是有两张表,一张表记录商品的各种属性,另一张表则是记下商品的图片,表结构简化如下注 数据皆为瞎掰 1234567891011121314151617181920. 12345$this->db->select (id, lamp num as num, lamp name as name. Hello ,Im May in Soochow University, and Now, Im a junior. And Theme by Jacman.

maywanting.wang maywanting.wang

最原始的编译安装php7 | May's Blog

http://maywanting.wang/2016/10/25/20161025php7-linux

Wget cn2.php.net/get/php- 7.0. Mv mirror php- 7.0. Make & make install. 用 nginx 服务器配置多版本的 php. Hello ,Im May in Soochow University, and Now, Im a junior. This is my blog, believe it or not. And Theme by Jacman.

maywanting.wang maywanting.wang

记一次项目的开发到部署 | May's Blog

http://maywanting.wang/2016/08/20/20160820project-deploy

首先,这个项目叫 iphone 热修复后台管理,简单的说就是用来管理 iphone 热修复所需要的 js 文件,手机定时请求js文件来修复app上出现的临时bug,然后管理平台和手机 app 那边约定一个rsa密钥对,用来验证 js 文件是来自热修复平台。 无论是学校毕设系统那边的 apache,还是公司这边的 nginx,配置 url 重写的时候都遇到了问题。 这回 nginx 配置重写更加的复杂,首先开发的服务器上 nginx 的配置文件高达两千多行,说实话我真不知道该往哪写配置,然后我单独拉出来一个配置文件放到我的 home 下,这样单独配个 server name 方便开发,然后再设个 host 指定 server name 指向的 ip,也还是不错。 然后我在配置单独拉出来的 server 就出问题了,我一直以为我 nginx 配错了,结果告诉我这个服务器上nginx与 fast cgi 的通信不走端口,走的监听 socket 文件,然后我一下午折腾 nginx 的配置白费了。 用 nginx 服务器配置多版本的 php. This is my blog, believe it or not.

iat.net.cn iat.net.cn

WebSocket(三)——WebSocket协议 | iat

http://iat.net.cn/websocket-3.html

Error during WebSocket handshake: Sec-WebSocket-Accept mismatch. Return base64 encode(sha1($key . '258EAFA5-E914-47DA-95CA-C5AB0DC85B11', true) ;. RSV1, RSV2, RSV3:各1 bit. 一个 ping 即可以充当一个 keepalive,也可以作为验证远程端点仍可响应的手段。 为1表明 负载数据 是掩码的,掩码键出现在 masking-key,用于解掩码 负载数据。 Payload length:7 bits, 7 16 bits, 或7 64 bits. 负载数据 的长度,以字节为单位:如果 0-125,这是负载长度。 如果 126,之后的两字节解释为一个 16 位的无符号整数是负载长度。 如果 127,之后的 8字节解释为一个 64 位的无符号整数(最高有效位必须是 0)是负载长度负载长度是 扩展数据 长度 应用数据 长度。 扩展数据 长度可能是零,在这种情况下,负载长度是 应用数据 长度。 Masking-key:0 或 4 bytes.

iat.net.cn iat.net.cn

MYSQL中多个TIMESTAMP的问题 | iat

http://iat.net.cn/mysql-timestamp.html

TIMESTAMP default CURRENT STAMP. TIMESTAMP on update CURRENT TIMESTAMP. Id` int auto increment primary key,. Create time` TIMESTAMP default CURRENT TIMESTAMP,. Update time` TIMESTAMP on update CURRENT TIMESTAMP. ERROR 1293 (HY000): Incorrect table definition; there can be only one TIMESTAMP column with CURRENT TIMESTAMP in DEFAULT or ON UPDATE clause. Id` int auto increment primary key,. Create time` TIMESTAMP default 0000-00-00 00:00:00,. Update time` TIMESTAMP on update CURRENT TIMESTAMP.

UPGRADE TO PREMIUM TO VIEW 101 MORE

TOTAL LINKS TO THIS WEBSITE

111

OTHER SITES

sukai-y.deviantart.com sukai-y.deviantart.com

Sukai-Y (................) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 5 Years. This deviant's full pageview. Last Visit: 284 weeks ago. This is the place where you can personalize your profile! My art ...

sukai-yomi.deviantart.com sukai-yomi.deviantart.com

sukai-yomi (Tania) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Deviant for 1 Year. This deviant's full pageview. Last Visit: 1 week ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. Why," you ask? Wi-Fi ...

sukai-yume.deviantart.com sukai-yume.deviantart.com

Sukai-yume - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Deviant for 9 Years. February 3, 1993. Last Visit: 82 weeks ago. This deviant's activity is hidden. Deviant since Apr 16, 2007. This is the place where you can personalize your profile! May 29, 2012...

sukai.co.vu sukai.co.vu

العصماء

고양이, 고양이와 음악.

sukai.de sukai.de

sukai.de

The Sponsored Listings displayed above are served automatically by a third party. Neither the service provider nor the domain owner maintain any relationship with the advertisers. In case of trademark issues please contact the domain owner directly (contact information can be found in whois).

sukai.me sukai.me

sukai's blog

发表于 Oct 31, 2016. 发表于 Aug 24, 2016. 1 Classifying Search Windows. 发表于 Jul 30, 2016. 7月看了10 11篇论文 Face Alignment ,这占据了工作的大部分时间。 发表于 Jun 30, 2016. 算法导论 第9章 中位数和顺序统计量 正好讲到了这个问题,. 发表于 Jun 20, 2016. 发表于 Jun 19, 2016. Page 1 of 5.

sukai.us sukai.us

Kai Su

I'm working towards my Ph.D. in Electrical and Computer Engineering at WINLAB. Rutgers University since 2010. My advisor is Prof. Narayan B. Mandayam. I obtained my B.S. in Communications Engineering from Beijing Jiaotong University, China. Learn about previous projects. Resource alloction. Network coding. Future Internet protocols. Radio resource management for RNC. Analyze Random Network Coding and devise corresponding resource allocation algorithms to boost multicast throughputs in wireless networks.

sukai1224.eju.cn sukai1224.eju.cn

苏凯设计师网-室内设计室内装修设计网站

Http:/ sukai1224.eju.cn/ 收藏该网址.

sukai3.deviantart.com sukai3.deviantart.com

Sukai3 (Rice) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 6 Years. I don't care about pageviews! This deviant's activity is hidden. Deviant since Feb 18, 2009. This is the place where you can personalize your profile! You can drag and drop to rearrange.

sukai777.skyrock.com sukai777.skyrock.com

sukai777's blog - Linkinpark92 - Skyrock.com

Ben y'aura des musique et des photos de chanteurs et peut-être autre chose. 039;-` -'`). 039;- . '=' . .-'. 039;#'#.-.#'#'#;`. 039;#'- - ( /. 039;#- - - -*.-.#'. 039;#- - .-.#'-. 039;# .#'/-./. 039;#' ). 24/06/2007 at 12:19 AM. 04/09/2007 at 1:34 AM. Subscribe to my blog! Add this video to my blog. Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.2) if someone makes a complaint. Posted on Tuesday, 26 J...

sukaial.blogspot.com sukaial.blogspot.com

sex

Thursday, December 11, 2008. Farah Ki Chudai - Urdu Writing Story - Sexvex : Chudai Stories : Desi Stories : Urdu Stories. Farah Ki Chudai - Urdu Writing Story - Sexvex : Chudai Stories : Desi Stories : Urdu Stories. Posted by faiz zkbar @ 1:21 PM. View my complete profile. Farah Ki Chudai - Urdu Writing Story - Sexvex : Ch.