[Python] python vs cplusplus
前言
一、故事背景
本篇的初衷是为了初步整理计算机视觉相关的笔记,帮助个人理清思路。
当然了,计算机视觉是个及其庞大且随性的范畴,只能用到什么学什么,项目驱动为好。
本人目前致力于完善个人的AR知识体系、实践体系,聊及此,不经感叹 Real AR 门槛之变态高。
计算机视觉、机器学习、三维模型、手机软件开发(iphone, android or react native)、Serverless,
如果可以,还可以再算上一些附加的聊天系统、语音识别系统。
AR是一项综合多种技术于一身的产品,而不是技术。
目前来看,对该“理解”深度的忽视导致还未有一款真正获得市场好评的AR产品出现。
二、寻迹漫聊
Tracking
[Object Tracking] Overview of Object Tracking
[Object Tracking] Overview of algorithms for Object Tracking
Deep Learning
[Deep Learning] How deep is the Deep Learning - History
[Deep Learning] How deep is the Deep Learning - Revolution
[Deep Learning] How deep is the Deep Learning - Reinforcement Learning
[Object Tracking] Deep Boundary detection Tech
Human Recognition
[Face] Outline - Key features detection of human face
[CV Timeline] Applications of Face recognition and PoseNet
3D SLAM
Others:
[CV] Collection of Computer Vision
三、新鲜韭菜
MeidaPipe
Real-Time 3D Object Detection on Mobile Devices with MediaPipe, Wednesday, March 11, 2020
在2019年6月举行的CVPR大会,MeidaPipe正式开源
大宝库
基础知识
一、基本数据结构
- 目的:了解 OpenCV 对 "几何图像&图片" 的描述方式
[OpenCV] Basic data types - Matrix【Mat有数学优化, IplImage, cvMat三种结构】
[OpenCV] IplImage and Operation【 IplImage为基础的图像操作】
[OpenCV] HighGUI【*** 与操作系统,文件系统,摄像机之类的硬件进行交互的一些函数纳入HighGui】
二、图像处理知识
- 预处理
[OpenCV] Image Processing - Image Elementary Knowledge【一些数学基本原理】
[OpenCV] Image Processing - Grayscale Transform & Histogram【利用“直方图"预处理图像】
- 频域、空间域滤波
[OpenCV] Image Processing - Frequency Domain Filtering【傅里叶】
[OpenCV] Image Processing - Spatial Filtering【算子】
[OpenCV] Image Processing - Fuzzy Set【模糊集,暂时忽略】
- 图像去噪
[Scikit-learn] Dynamic Bayesian Network - Conditional Random Field【条件随机场、模拟退火】
三、特征提取与匹配
- 提取&匹配
[OpenCV] Feature Extraction【提取特征】
[OpenCV] Feature Matching【特征匹配】
- 目标识别实践
[Object Tracking] Identify and Track Specific Object【特征提取与匹配的项目实践】
四、Sample 示范
- 数据结构
[OpenCV] Samples 02: Mat - 图像矩阵【Mat计算能力】
[OpenCV] Samples 01: Geometry - 几何图形【几何图案、文字等】
[OpenCV] Samples 07: create_mask【鼠标圈图】
- 工程技巧
[OpenCV] Samples 13: opencv_version【版本信息显示】
[OpenCV] Samples 10: imagelist_creator【图片地址list参数】
[OpenCV] Samples 18: Load image and check its attributes【图片属性】
- 色彩通道
[OpenCV] Samples 09: plImage <==> Mat【色域通道分离】
[OpenCV] Samples 16: Decompose and Analyse RGB channels【色域通道分离】
- 边缘操作
[OpenCV] Samples 08: edge【边缘检测】
[OpenCV] Samples 04: contours2【二值图案找轮廓】
[OpenCV] Samples 05: convexhull【散点的凸包轮廓】
- 模型算法
[OpenCV] Samples 03: kmeans【聚类算法】
[OpenCV] Samples 17: Floodfill【聚类算法】
[OpenCV] Samples 06: logistic regression【线性二分类】
[OpenCV] Samples 14: kalman filter【预测下一个状态】
[OpenCV] Samples 15: Background Subtraction and Gaussian mixture models【背景差分】
- 视频处理
[OpenCV] Samples 11: image sequence【视频流提取】
[OpenCV] Samples 12: laplace【视频流处理】
五、视觉对比
六、三维视觉
几何变换
[Link] 平面的投影变换(2)——有几种几何变换?【此人的其他相关文章也不错】
[Link] Photo Wake-Up: 3D Character Animation from a Single Photo【非常有潜力的技术】
七、目标跟踪
- 有姿态
[Object Tracking] Identify and Track Specific Object
[Object Tracking] LK & Deep-LK
- 无姿态
八、API剪裁
[OpenCV] Prune and insert APIs
AR based on React Native
一、调研
ViroMedia
// Viro是个好东西,但不一定需要
ARCore
// 重点在定位系统
Sumerian
// Host非常好
[Sumerian] 00 - It provides 3D Character Model
二、实战
/* implement above. */
[Python] python vs cplusplus的更多相关文章
- python --- Python中的callable 函数
python --- Python中的callable 函数 转自: http://archive.cnblogs.com/a/1798319/ Python中的callable 函数 callabl ...
- Micro Python - Python for microcontrollers
Micro Python - Python for microcontrollers MicroPython
- 从Scratch到Python——python turtle 一种比pygame更加简洁的实现
从Scratch到Python--python turtle 一种比pygame更加简洁的实现 现在很多学校都开设了Scratch课程,学生可以利用Scratch创作丰富的作品,然而Scratch之后 ...
- 从Scratch到Python——Python生成二维码
# Python利用pyqrcode模块生成二维码 import pyqrcode import sys number = pyqrcode.create('从Scratch到Python--Pyth ...
- [Python]Python 使用 for 循环的小例子
[Python]Python 使用 for 循环的小例子: In [7]: for i in range(5): ...: print "xxxx" ...: print &quo ...
- [python]python 遍历一个list 的小例子:
[python]python 遍历一个list 的小例子: mlist=["aaa","bbb","ccc"]for ss in enume ...
- [Python]Python日期格式和字符串格式相互转换
由字符串格式转化为日期格式的函数为: datetime.datetime.strptime() 由日期格式转化为字符串格式的函数为: datetime.datetime.strftime() # en ...
- [python]Python 字典(Dictionary) update()方法
update() 函数把字典dict2的键/值对更新到dict里.如果后面的键有重复的会覆盖前面的语法dict.update(dict2) dict = {'Name': 'Zara', 'Age': ...
- [python]python try异常处理机制
#python的try语句有两种风格 #一:种是处理异常(try/except/else) #二:种是无论是否发生异常都将执行最后的代码(try/finally) try/except/else风格 ...
随机推荐
- Mac系统中配置Tomcat环境
第一步:下载Tomcat 下载地址:http://tomcat.apache.org/download-80.cgi 直接下载如图选中的即可 第二步: 下载完成后,解压,随意放入目录.如我就把它放在/ ...
- VS2010 ERROR:c1xx fatal error c1083
在VS2010中新建文件夹,然后在文件夹内新建文件polling.cpp,可是在项目中不现实该cpp文件,所以就在在硬盘上将该文件删除,编译报错. >c1xx : fatal error C10 ...
- Search a 2D Matrix
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the follo ...
- RunLoop(基本操作)
基本概念 -(void)runTimerInThread { //NSAutoreleasePool,没的用 [NSTimer scheduledTimerWithTimeInterval:1.0 t ...
- “LC.exe”错误
错误“LC.exe”已退出,代码为 -1. 可能的原因是: 这个第三方组件是个商业组件,他在组件的主使用类定义了 LicenseProvider(typeof(LicFileLicenseProvid ...
- stl文件格式解析代码--java版
代码是参考three.js中的stlLoader.js写的. 需要注意的地方,java中byte取值-128~127 package test_stl.test_entry; import java. ...
- SQL语句大全
经典SQL语句大全(绝对的经典) 一.基础 1.说明:创建数据库CREATE DATABASE database-name 2.说明:删除数据库drop database dbname3.说明:备份s ...
- jquery的each
each()方法能使DOM循环结构简洁,不容易出错.each()函数封装了十分强大的循环功能,使用也很方便,它可以循环一维数组.多维数组.DOM, JSON 等等在javaScript开发过程中使用$ ...
- The easy way to implement a Red-Black tree
Red-Black trees are notorious for being nightmares of pointer manipulation. Instructors will show th ...
- Servant:基于Web的IIS管理工具
Servant for IIS是个管理IIS的简单.自动化的Web管理工具.安装Servant的过程很简单,只要双击批处理文件Install Servant Service.bat,然后按照屏幕上的说 ...