前言


一、故事背景

本篇的初衷是为了初步整理计算机视觉相关的笔记,帮助个人理清思路。

当然了,计算机视觉是个及其庞大且随性的范畴,只能用到什么学什么,项目驱动为好。

本人目前致力于完善个人的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

[CNN] Face Detection

[Face] Outline - Key features detection of human face

[CV Timeline] Applications of Face recognition and PoseNet

[CV] Detect face with mask

3D SLAM

[SLAM] Little about 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【模糊集,暂时忽略】

  • 图像去噪

[OpenCV] Image Denoising

[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【视频流处理】

五、视觉对比

[CV] Scene contrast

六、三维视觉

  • 几何变换

[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

  • 无姿态

[Object Tracking] MeanShift

八、API剪裁

[OpenCV] Prune and insert APIs

AR based on React Native


一、调研

  • ViroMedia

// Viro是个好东西,但不一定需要

[RN] 01, Init AR

[RN] 02, Start Viro

  • ARCore

// 重点在定位系统

[ARCore] 00 - The First Demo

[ARCore] 01 - Plane Detection

[ARCore] 02 - Solar System

  • Sumerian

// Host非常好

[Sumerian] 00 - It provides 3D Character Model

[Sumerian] 01 - Build a room

[Sumerian] 02 - Build a host

[Sumerian] 03 - Build a AR

二、实战

/* implement above. */

[Python] python vs cplusplus的更多相关文章

  1. python --- Python中的callable 函数

    python --- Python中的callable 函数 转自: http://archive.cnblogs.com/a/1798319/ Python中的callable 函数 callabl ...

  2. Micro Python - Python for microcontrollers

    Micro Python - Python for microcontrollers MicroPython

  3. 从Scratch到Python——python turtle 一种比pygame更加简洁的实现

    从Scratch到Python--python turtle 一种比pygame更加简洁的实现 现在很多学校都开设了Scratch课程,学生可以利用Scratch创作丰富的作品,然而Scratch之后 ...

  4. 从Scratch到Python——Python生成二维码

    # Python利用pyqrcode模块生成二维码 import pyqrcode import sys number = pyqrcode.create('从Scratch到Python--Pyth ...

  5. [Python]Python 使用 for 循环的小例子

    [Python]Python 使用 for 循环的小例子: In [7]: for i in range(5): ...: print "xxxx" ...: print &quo ...

  6. [python]python 遍历一个list 的小例子:

    [python]python 遍历一个list 的小例子: mlist=["aaa","bbb","ccc"]for ss in enume ...

  7. [Python]Python日期格式和字符串格式相互转换

    由字符串格式转化为日期格式的函数为: datetime.datetime.strptime() 由日期格式转化为字符串格式的函数为: datetime.datetime.strftime() # en ...

  8. [python]Python 字典(Dictionary) update()方法

    update() 函数把字典dict2的键/值对更新到dict里.如果后面的键有重复的会覆盖前面的语法dict.update(dict2) dict = {'Name': 'Zara', 'Age': ...

  9. [python]python try异常处理机制

    #python的try语句有两种风格 #一:种是处理异常(try/except/else) #二:种是无论是否发生异常都将执行最后的代码(try/finally) try/except/else风格 ...

随机推荐

  1. JSON详解

    首先要知道JSON是一种轻量级的数据格式,不是一种编程语言,因此其他语言也可以使用. 一.JSON语法 JSON语法可以表现为下面三种值: 1.简单值:字符串.数值.布尔值和null,如"h ...

  2. Android 网络状态检测

    package com.example.administrator.yunstore.net; import android.app.AlertDialog; import android.conte ...

  3. JS中的柯里化与反柯里化

    先占个位 看了一天折资料,感觉清楚多了

  4. elasticsearch 之mapping

    搭好elk 后,有时候会发现kibana 统计数据时,数据类型不对,这个时候就和elasticsearch的mapping有关,虽然我们可以用logstash修改传入es里的数据类型,比如 float ...

  5. 如何在.NET上处理二维码

    在移动设备,网站以及应用程序间传送数据,而使用二维码真是一种较快捷的方法,也避免了蓝牙配对的混乱状况.ZXing.NET是一个开源,多格式1D/2D条码图像处理库的C#实现,ZXing.NET是个相当 ...

  6. [SDK2.2]Windows Azure Storage (16) 使用WCF服务,将本地图片上传至Azure Storage (上) 客户端代码

    <Windows Azure Platform 系列文章目录> 前一章我们完成了服务器端的代码,并且已经发布到了Windows Azure云端. 本章我们将实现客户端的代码,客户端这里我们 ...

  7. 完全移除TFS2013的版本控制

    环境:Vs2103(TFS2013) 目的:去掉别人项目里的TFS控制,因为每次打开时会有提示信息 解决方法: 1.删除隐藏的.$tf文件夹,搜索*.vssscc和*.vspscc这两个后缀的文件,删 ...

  8. C#事件

    事件(event),这个词儿对于初学者来说,往往总是显得有些神秘,不易弄懂.而这些东西却往往又是编程中常用且非常重要的东西.大家都知道windows消息处理机制的重要,其实C#事件就是基于window ...

  9. python安装locustio报错error: invalid command 'bdist_wheel'的解决方法

    locust--scalable user load testing tool writen in Python(是用python写的.规模化.可扩展的测试性能的工具) 安装locustio需要的环境 ...

  10. 基于stm32f4的ucGUI通过外部flash存储汉字库显示任意英文字符和汉字组合(控件可用)

    在做一个用到ucGUI的项目的时候要用到不定的汉字和英文字符,但是ucGUI本身又不支持读取芯片外部flash的字库来显示,于是查了下资料,如下: http://www.cnblogs.com/hik ...