
cv
lcmssd
这个作者很懒,什么都没留下…
展开
-
MTCNN
Joint Face Detection and Alignment using Multi-task Cascaded Convolutional Neural Networks 论文:https://arxiv.org/ftp/arxiv/papers/1604/1604.02878.pdf代码:https://github.com/kpzhang93/MTCNN_face_detection...原创 2018-03-17 18:10:30 · 1637 阅读 · 0 评论 -
从网络中搜索时间旅行者的踪迹
REF如果时间旅行可行,那么未来人回到当代, 最可能在网络中留下踪迹,比如会留下一些具有预测性的信息. 对此有信心的人利用google/bing搜索这些信息, 但目前没有hard evidence,偶然遇到的一些"预测"新闻,也是google/bing的日期错误...., 不过目前似乎转向利用twitter开始新的搜索了.转载 2014-06-14 21:43:14 · 427 阅读 · 0 评论 -
手势识别竞赛
REF有数据库和往年参赛算法的实现细节,慢慢找原创 2014-06-14 21:39:28 · 694 阅读 · 0 评论 -
免费的云端face recognition
REF有机会试用下原创 2014-06-14 21:39:25 · 367 阅读 · 0 评论 -
deep learn
REF原创 2014-06-14 21:39:03 · 371 阅读 · 0 评论 -
William T. Freeman
REFBelief Propagation原创 2014-06-14 21:39:01 · 540 阅读 · 0 评论 -
数学中国
REF原创 2014-06-14 21:38:56 · 509 阅读 · 0 评论 -
ICDAR dataset
REF原创 2014-06-14 21:38:52 · 1066 阅读 · 0 评论 -
学习_机器学习
REF原创 2014-06-14 21:38:47 · 368 阅读 · 0 评论 -
Matlab ML Tools
REF原创 2014-06-14 21:38:41 · 363 阅读 · 0 评论 -
changedetection
REF原创 2014-06-14 21:38:38 · 605 阅读 · 0 评论 -
ICML
REF原创 2014-06-14 21:37:40 · 704 阅读 · 0 评论 -
google X Lab:人工脑自动学习什么…
REF16K个CPU+1Billions的连接,组成一个网络(未必是神经网络)海量数据送给网络自动寻找数据中相似的物体,自动学习识别结果:human face: 81.7%human body part: 76.7%cat: 74.8%识别20K类目标,有15.8%的准确率,比文献记载的网络学习方法提升70%原创 2014-06-14 21:37:28 · 420 阅读 · 0 评论 -
ImageMagicK usage
1. 图像反色 convert -negate src.jpgresult.jpg2. 颜色转换 convert src.jpg -colorspacegray result.jpg3. 图像裁剪 3.1 普通裁图 convert src.jpg -cropwidthxheight+x+y result.jpg 注意其中的widthxheig原创 2014-06-14 21:36:16 · 368 阅读 · 0 评论 -
Saliency Region Detection Toolbo…
REF原创 2014-06-14 21:35:51 · 376 阅读 · 0 评论 -
Handwriting Recognition in Apple…
Apple’s Newton MessagePad has found success in on-lineprinted handwriting recognition using the Apple Print-Recognizer in1993原创 2014-06-14 21:32:25 · 408 阅读 · 0 评论 -
what is CART
wikipediaDecision trees used in datamining are of two main types:Classificationtree analysis is when the predicted outcome isthe class to which the data belongs.Regressiontree analysis is原创 2014-06-14 21:32:35 · 462 阅读 · 0 评论 -
第一个实用的由眼睛控制的笔记本
REF原创 2014-06-14 21:34:55 · 439 阅读 · 0 评论 -
JabRef
开源的文档管理工具1. 中文乱码 a) 编码设置成utf8 b)preferences->apperances->Set tablefont -> 设置成一个中文字体2. 如何关联文件 a)使用BibTex key方式关联 BibTex可以从网上下载,也可以自己填写完文档信息后, 利用 Tools->Autogenerate BibTex Keys产转载 2014-06-14 21:42:36 · 519 阅读 · 0 评论 -
统计教程
REF转载 2014-06-14 21:38:45 · 498 阅读 · 0 评论 -
python opencv
import cv2import numpy as npimg = cv2.imread('dog.jpg')#print img.shape[1]scaled = cv2.resize(img, (img.shape[1]/3, img.shape[0]/3))for y in range(scaled.shape[1]/2): fo转载 2014-12-26 13:17:54 · 604 阅读 · 0 评论 -
f(x)的导数和f(x)的比
就如加速度和速度的比, 物理意义似乎不好解释,但数学上却的确有,比如1) log(f(x))的导数2) 参见牛顿迭代法转载 2014-06-14 21:42:40 · 2116 阅读 · 0 评论 -
R语言备忘
1. 加载csv read.csv() 2. 查看数据 head(), tail() 3. package install/usage 从菜单安装, 用library()加载 4. 转换成factor as.factor() 5. 查看是否是factor is.factor() 6. 关于脚本转载 2014-07-13 22:22:01 · 1141 阅读 · 0 评论 -
室内定位技术
REF一种新的, 基于图像匹配的市内定位技术:首先需要人背着一个仪器在市内走一圈, 仪器会自动记录图片,拼接全景图,生成图像数据库.然后用户只需用手机在市内拍一张照片,算法可以利用图像数据和当前图作比较, 确定拍摄的位置和手机的orientation.相对采用wifi的定位技术,这种技术显然要廉价不少. 目前的测试效果也还不错, 正确率为96%,定位误差小于1m转载 2014-06-14 21:43:01 · 1227 阅读 · 0 评论 -
[NEIL] Never Ending&nb…
REF永不停息的分析图片, 自动学习一些visual properties. 以下是目前学到的概念中的几个例子:A rifle can be a kind of / look similar to Ak_47 An Airbus_330 can be a kind of / look similar to Airbus_340 Leaning_towe原创 2014-06-14 21:42:43 · 396 阅读 · 0 评论 -
2013年诺贝尔化学奖: 计算机…
1. 化学实验在不同尺寸分别需要经典物理学和量子物理学2. 计算机模拟借助量子学进入原子内部3. 可视化依然是学科所需, 爱因斯坦的纯数学方式隔绝了科学和哲学, 物理学进入纯数学阶段,结果究竟如何原创 2014-06-14 21:42:14 · 586 阅读 · 0 评论 -
硬件HDR
Sony公司已经有基于WRGB的硬件HDR方法,这次Rambus提出一种新的HDR, Binary Pixel,据说是模拟人眼基于Binary Pixel technology. 不过这个是那个做内存的rambus??原创 2014-06-14 21:40:28 · 676 阅读 · 0 评论 -
SigBovik
REFSigBovik 计算机领域的怪异会议,利用计算机领域各种严谨的方法去解决稀奇古怪的问题原创 2014-06-14 21:40:26 · 988 阅读 · 0 评论 -
opencv读取视频失败 解决方法
使用cvCaptureFromAVI()读一个avi,失败了N次后,发现一个解决方法1. 从xvid 下载编解码器并安装2. 使用其中的mini convert把avi转换一下, 结果依然是avi文件,但openv可以读取了...原创 2014-06-14 21:40:24 · 1583 阅读 · 0 评论 -
七个摄像机监控球是否进门
REFHawk-Eye 专注球类跟踪技术,本次已经有俱乐部决定使用这套系统,不过没有给球门要用7个高速摄像机原创 2014-06-14 21:40:21 · 508 阅读 · 0 评论 -
opencv 2.3.1 找不到tbb.dll
现象:引用了imgproc231.dll提示找不到tbb.dll解决方法:把opencv\build\common\tbb\ia32加入PATH,重启PC(或者直接把tbb.dll复制到一个PATH目录中去)原创 2014-06-14 21:36:50 · 935 阅读 · 0 评论 -
识别鞋子
REFQ:识别鞋子可以用来做什么?A:跟踪教室中的学生原创 2014-06-14 21:35:35 · 1799 阅读 · 1 评论 -
The Machine Learning Dictionary
REF没用过。。原创 2014-06-14 21:35:08 · 368 阅读 · 0 评论 -
基于像素的视频背景分割 VIBE
REF原创 2014-06-14 21:34:43 · 460 阅读 · 0 评论 -
FR
Face-Rec原创 2014-06-14 21:32:53 · 458 阅读 · 0 评论 -
compressive sensing
mainone Sparse represenation representative原创 2014-06-14 21:32:55 · 414 阅读 · 0 评论 -
MG
multigrid原创 2014-06-14 21:32:51 · 1311 阅读 · 0 评论 -
raw data
1. posterization any 'histgram stretch'may produce posterization because the limited levels has to fill abroader range than origin. Some empty bins will be created. mostlythe posterization happe原创 2014-06-14 21:32:43 · 499 阅读 · 0 评论 -
Convex Hull Algorithms & general…
generalized symmetry transform : a good clue to objectdetectionConvex Hull Algorithms shadow soften: given a clean plate (nowords) to indicate the target illumination, to create some map原创 2014-06-14 21:32:41 · 510 阅读 · 0 评论 -
Geometric Blur
AlexBerga feature for interesting point with low computationusage : face detection, human posturerecognition the unclear point is how to get point's gemetric blur fromgaussion smooth result原创 2014-06-14 21:32:39 · 712 阅读 · 0 评论