http://handtracker.mpi-inf.mpg.de/projects/FastHandTracker/…
利用OpenCV检测图像中的长方形画布或纸张并提取图像内容 - 阅读笔记 相对来说,如下链接是此文的高阶方案版本,做对比是极好的. [Object Tracking] Contour Detection through Tensorflow running on smartphone 纸张四角的坐标未知或难以准确标注的情况 这种场景可能是小屏幕应用,或是原始图像就很小,比如我这里用的这个300x400例子,点坐标很难精确标注.这种情况下一个思路是: 用边缘检测提取纸张四边, 然后求出四角坐标,…
iker原创.转载请标明出处:http://blog.csdn.net/ikerpeng/article/details/39050619 Realtime and Robust Hand Tracking from Depth中的Cost Function 学习 首先,我们应该知道,输入的数据是什么:3D 点云数据. 3D点云给我的感觉应该是这种 输出的是:拟合好的手模型(48球体模型). 而这里的的3D 点云数据用p表示,每个球体用Sx 表示. Ci 第i个球体的中心:D表示深度图( 区分还…
Multihypothesis Trajectory Analysis for Robust Visual Tracking 2019-10-27 14:33:49 Paper: https://www.cv-foundation.org/openaccess/content_cvpr_2015/papers/Lee_Multihypothesis_Trajectory_Analysis_2015_CVPR_paper.pdf Code: http://mcl.korea.ac.kr/resea…
‘Skimming-Perusal’ Tracking: A Framework for Real-Time and Robust Long-term Tracking 2019-09-05 21:11:19 Paper: https://arxiv.org/pdf/1909.01840.pdf Code: https://github.com/iiau-tracker/SPLT Related works: Zhang, Yunhua, et al. "Learning regression…
张宁  Fast and Robust Initialization for Visual-Inertial SLAM链接:https://pan.baidu.com/s/1cdkuHdkSi9x7l-96zMbX7g 提取码:b3ff Carlos Campos, Jos´e M.M. Montiel and Juan D. Tard´os Visual-inertial SLAM (VI-SLAM) requires a good initial estimation of the init…
If you fail to install and run this tracker, please email me (zhangyunhua@mail.dlut.edu.cn) Introduction This repository includes tensorflow code of MBMD (MobileNet-based tracking by detection algorithm) for VOT2018 Long-Term Challenge. The correspon…
参考文献:Multiple Object Tracking using K-Shortest Paths Optimization 核心步骤: 两步:一.detection 二.link detection 该文工作:reformulating that step as a constrained flow optimization results in a convex problem 其他人的工作: sampling and particle filtering linking short…
https://github.com/python/cpython Profile Guided Optimization PGO takes advantage of recent versions of the GCC or Clang compilers. If used, either via configure --enable-optimizations or by manually running make profile-opt regardless of configure f…
From: 手机端运行卷积神经网络的一次实践 -- 基于 TensorFlow 和 OpenCV 实现文档检测功能 貌似不错的东西:移动端视觉识别模型:MobileNets Holistically-nested Edge Detection 是屠卓文教授课题组在ICCV 2015 的工作. 该工作最大的亮点在于,一改之前边缘检测方法基于局部策略的方式,而是采用全局的图像到图像的处理方式. 即:不再针对一个个patch进行操作,而是对整幅图像进行操作,为高层级信息的获取提供了便利. 题材看上去很…