
OpenCV
文章平均质量分 77
Wayne__Yang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Write Videos & Images
1.Write Videos #include #include #include using namespace cv; using namespace std; int main(int argc, char **argv) { time_t t=time(0); string x=to_string(t); VideoCapture capture(0); dou原创 2017-04-07 20:48:41 · 440 阅读 · 0 评论 -
Template Matching
The template matching code is as follows. #include #include #include #include #include #include #include #include #include #include "opencv2/video/tracking.hpp" using namespace cv; using n原创 2017-04-13 12:32:34 · 552 阅读 · 0 评论 -
源码实现 Aruco检测
以下为实现aruco检测并读取id的代码,直接复制粘贴即可。相信看到这篇博客的伙伴应该知道aruco,我就不解释了。opencv3.0以上有实现aruco的库。一、cmake编译信息Cmakelist.txtcmake_minimum_required(VERSION 2.6) project(artag2) find_package(OpenCV REQUIRED ) include_direc...原创 2017-07-17 22:26:41 · 4838 阅读 · 4 评论