(code)[https://gist.github.com/zalo/71fbd5dbfe23cb46406d211b84be9f7e]
# Construct a "rotation" matrix (strong simplification, might have shearing)
rotationMatrix = np.empty((3,3))
# 脸颊两点连线为x轴
rotationMatrix[0,:] = (centered[16] - centered[0])/np.linalg.norm(centered[16] - centered[0])
# 下巴眉心两点连线为y轴
rotationMatrix[1,:] = (centered[8] - centered[27])/np.linalg.norm(centered[8] - centered[27])
# 上面两条线所在平面的法向量为z轴( 所以用叉乘)
rotationMatrix[2,:] = np.cross(rotationMatrix[0, :], rotationMatrix[1, :])
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="main"> | |
<div id="post_detail"> | |
<div class="post"> | |
<h2> | |
<a id="cb_post_title_url" href="https://www.cnblogs.com/kekec/p/3662125.html">windows常用命令</a> | |
</h2> | |
<div id="cnblogs_post_body" class="blogpost-body"><p>打开"<strong><span style="color: rgb(255, 0, 0); --darkreader-inline-color:#cf1514;" data-darkreader-inline-color="">运行</span></strong>"对话框(<strong><span style="color: rgb(0, 128, 0); --darkreader-inline-color:#197517;" data-darkreader-inline-color="">Win+R</span></strong>),输入<span style="color: rgb(128, 0, 0); --darkreader-inline-color:#6e1110;" data-darkreader-inline-color="">cmd</span>,打开控制台命令窗口...</p> | |
<p>也可以通过<span style="color: rgb(255, 102, 0); --darkreader-inline-color:#d9681c;" data-darkreader-inline-color="">cmd /c 命令</span> 和 <span style="color: rgb(255, 102, 0); --darkreader-inline-color:#d9681c;" data-darkreader-inline-color="">cmd /k 命令</span>的方式来直接运行命令</p> | |
<p><span style="background-color: rgb(128, 128, 128); --darkreader-inline-bgcolor:#7e7c77;" data-dark |
**topics/github
#####https://github.com/topics/3d-face
https://github.com/YadiraF/PRNet
https://github.com/cleardusk/3DDFA
https://github.com/1adrianb/face-alignment
https://github.com/AaronJackson/vrn
https://github.com/patrikhuber/eos
https://github.com/mrharicot/monodepth
- Implementation of "Learn Convolutional Neural Network for Face Anti-Spoofing" paper github
- Code for 2nd Place Solution in Face Anti-spoofing Attack Detection Challenge @ CVPR2019, https://github.com/SeuTao/CVPR19-Face-Anti-spoofing
- Face Anti-spoofing demo to detect replay, video and mask attack, https://github.com/lbf4616/Face-Anti-spoofing
- This is a C++ code for face anti-spoofing methods based on color texture features. https://github.com/wuyongchn/Face-Spoofing-Detection-or-Face-Liveness-Detection
- Single Shot Face Anti-spoofing. https://github.com/JinghuiZhou/awesome_face_antispoofing
- Face Anti-Spoofing 集合, https://github.com/ChanChiChoi/awesome-Face_Recognition#face-anti-spoofing
1.Research:Deep Tree Learning for Zero-shot Face Anti-Spoofing ,Face De-Spoofing: Anti-Spoofing via Noise Modeling ,Learning Deep Models for Face Anti-Spoofing: Binary or Auxiliary Supervision ,http://w
删除之前的软链接并重新创建软链接
[root@thatsit FFmpeg-n3.1.2]# which ffmpeg
/usr/local/bin/ffmpeg
[root@thatsit FFmpeg-n3.1.2]# cd /usr/local/bin/
[root@thatsit bin]# ll|grep ff
lrwxrwxrwx 1 root root 28 Oct 22 2015 ffmpeg -> /usr/local/ffmpeg/bin/ffmpeg
[root@thatsit bin]# rm -f ffmpeg
[root@thatsit bin]# ln -s /usr/local/ffmpeg_3.1.2/bin/ffmpeg .
#numpy 多条件查找
np.where((log[:,1]==3) | (log[:,1]==4))
#或者
np.logical_or(log[:,1]==3 , log[:,1]==4)
NewerOlder