摘要: 阅读全文
posted @ 2018-08-18 13:28 Alip 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 注释: 1、书名:Mastering OpenCV with Practical Computer Vision Projects 2、章节:Chapter 3:Marker-less Augmented Reality 3、书中源代码的最新更新可以参考网址:https://github.com/M 阅读全文
posted @ 2017-10-25 15:32 Alip 阅读(1423) 评论(0) 推荐(0) 编辑
摘要: 注释: 1、书名:Mastering OpenCV with Practical Computer Vision Projects 2、章节:Chapter 3:Marker-less Augmented Reality 3、书中源代码的最新更新可以参考网址:https://github.com/M 阅读全文
posted @ 2017-10-25 15:32 Alip 阅读(1084) 评论(0) 推荐(0) 编辑
摘要: 1、书名:Mastering OpenCV with Practical Computer Vision Projects 2、章节:Chapter 3:Marker-less Augmented Reality 3、书中源代码的最新更新可以参考网址:https://github.com/Maste 阅读全文
posted @ 2017-10-25 15:32 Alip 阅读(927) 评论(0) 推荐(0) 编辑
摘要: 注释: 1、书名:Mastering OpenCV with Practical Computer Vision Projects 2、章节:Chapter 3:Marker-less Augmented Reality 3、书中源代码的最新更新可以参考网址:https://github.com/M 阅读全文
posted @ 2017-06-16 11:27 Alip 阅读(5167) 评论(0) 推荐(0) 编辑
摘要: Vuforia、HiAR、EasyAR 基本使用 1、下载;2、使用平台;3、使用unity; Vuforia的下载:邮箱注册。 (1)登陆后DownLoads,下载unity SDK几个版本; (2)使用后台,为develop开发者使用里面的License Manager和Target Manag 阅读全文
posted @ 2017-02-24 20:36 Alip 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 参考博文http://blog.csdn.net/jialeheyeshu/article/details/51137250 梳理一下环境配置的过程吧 我们主要解决三个问题: 1.OpenGL; 2.OpenCV2.4.9; 3.OpenGL+OpenCV2.4.9的Cmake打包; 那接下来我们先 阅读全文
posted @ 2017-01-18 18:34 Alip 阅读(853) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include void myInit(void){ glClearColor(0.2, 0.2, 0.2, 0.0);//设置背景颜色为白; glColor3f(0.0f, 0.0f, 0.0f);//设置绘图颜色为黑; glPointSize(1.0);/... 阅读全文
posted @ 2015-12-29 13:55 Alip 阅读(829) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include void myInit(void){ glClearColor(1.0, 1.0, 1.0, 0.0);//设置背景颜色为亮白; glColor3f(0.0f, 0.0f, 0.0f);//设置绘图颜色为黑白; glPointSize(1.0)... 阅读全文
posted @ 2015-12-29 13:52 Alip 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include #include #include using namespace std;void myInit(void){ glClearColor(1.0, 1.0, 1.0, 0.0);//背景颜色为白; glColor3f(0.0f, 0.0f, ... 阅读全文
posted @ 2015-12-29 13:47 Alip 阅读(358) 评论(0) 推荐(0) 编辑