- 博客(17)
- 收藏
- 关注
转载 【年度聚焦】2013能否成为增强现实(augmented reality)爆炸之年?
【年度聚焦】2013能否成为增强现实(augmented reality)爆炸之年?前言今年我们非常关注的一个重要趋势就是科技创新如何创造虚拟(网络)世界和现实(物理)世界的融合与对接。在从前所论述过的题目中,3D打印、互动印刷都属于这一类技术的范畴。今天我们要讨论的另一个主要课题是关于增强现实(augmented reality,简称AR)。听起来这是个相当科幻的名词,不过在20
2013-03-12 17:54:15
788
转载 OpenCV学习笔记(二)——新版本模块结构
转自 http://blog.youkuaiyun.com/yang_xian521/article/details/6903855OpenCV学习笔记(二)——新版本模块结构还是老话题,2.2版本对OpenCV可是进行了大刀阔斧的改革,用c++重新了大部分结构,而不是1.X版本中的c结构。这些模块包括:core——定义了基本数据结构,包括最重要的Mat和一些其他的模块imgp
2013-03-12 17:46:11
619
转载 OpenCV学习笔记(一)——安装配置、第一个程序
转自http://blog.youkuaiyun.com/yang_xian521/article/details/6894228 OpenCV学习笔记(一)——安装配置、第一个程序决心开始研究OpenCV。闲言少叙,sourceforge网站最近的版本是2011年8月的OpenCV2.3.1,下载安装,我这里使用的开发环境是vs2008,网上搜了一下配置的教程,与之前的几个OpenC
2013-03-12 17:43:30
680
转载 基于 Android NDK 的学习之旅-----环境搭建
基于 Android NDK 的学习之旅-----环境搭建基于 Android NDK的学习之旅-----环境搭建工欲善其事必先利其器 , 下面介绍下 Eclipse SDK NDK Cygwin CDT集成开发环境的搭建。1、Android开发环境搭建Android开发环境搭建不是重点,相信看此文章的很多人都已经搭建成功,这里随便概述性的说说。1)
2013-03-12 14:35:48
536
转载 Android下的类OpenCV库---【FastCV】
目录(?)[+]Setting up the Developer EnvironmentSupported Development PlatformsSet-up the Android Development EnvironmentJDKEclipse IDEAndroid SDK DownloaderTroubleshootingAndroid ADTAnd
2013-03-12 14:34:29
1615
翻译 角点检测(特征值,Harris,FAST)
#include "stdafx.h"#include #include #include #include #include using namespace cv;using namespace std; int main (int argc, char **argv) { // (1)load a specified file as a 3-
2013-03-12 11:16:32
1598
翻译 仿射变换(给定的参数,以获得的变换矩阵)
#include "stdafx.h"#include #include #include #include using namespace cv;using namespace std; int main(int argc, char **argv) { // (1)load a specified file as a 3-channel colo
2013-03-12 10:58:46
1206
翻译 数据在XML / YAML文件的保存/载入
//保存数据#include using namespace std; intmain (int argc, char **argv) { char filename[] = "save_cv.xml"; // file name // (1)create sample data int a = 10; float b =
2013-03-12 10:45:34
953
2
翻译 边缘检测(Sobel算子,拉普拉斯算子,Canny算子)
#include "stdafx.h"#include #include #include using namespace cv;using namespace std; int main (int argc, char **argv) { // (1)load a specified file as a grayscale image co
2013-03-12 10:33:07
4320
翻译 SURF特征点提取
#include "stdafx.h"#include #include #include #include #include using namespace cv;using namespace std; int main(int argc, char *argv[]) { // (1)load Color Image const
2013-03-12 10:20:19
1107
1
翻译 绘制图像颜色直方图
#include "stdafx.h"#include #include #include #include using namespace cv;using namespace std; int main (int argc, char **argv){ // (1)load a source image as is const ch
2013-03-11 17:33:50
988
翻译 指定区域内图像颜色反转
#include "stdafx.h"#include #include #include using namespace cv;using namespace std;Rect selection;int select_object; /* prototype declaration */void on_mouse(int event, int
2013-03-11 17:21:50
1499
翻译 图像在水平方向的简单连接
#include "stdafx.h"#include #include using namespace cv;using namespace std;int main (int argc, char **argv){ int img_num = argc > 1 ? argc-1 : 2; const char defaultfile[2][32] =
2013-03-11 17:00:14
599
翻译 矩阵内的随机点
#include "stdafx.h"#include #include #include using namespace cv;using namespace std;int main (int argc, char **argv){ // (1)allocate and initialize an image Mat img = Mat::zeros
2013-03-11 16:49:14
762
翻译 仿射变换(给定一组三个点前和后的变换,获得变换矩阵)
#include "stdafx.h"#include #include #include using namespace cv;using namespace std;int main(int argc, char **argv){ // (1)load a specified file as a 3-channel color image const s
2013-03-11 16:38:02
7713
转载 iOnRoad: 一个装在手机上的辅助驾驶软件
今天在CVChina上面看到关于软件iOnRoad的介绍,这是一款安卓手机系统下的辅助驾驶软件。看了原文以后,我去软件的网站和google商店看了一下。这款软件号称可以利用摄像头和手机内GPS,加速度计,陀螺仪来获得自身车辆的速度方向等信息。使用摄像头还可以检测前方车辆和车道,进行碰撞和偏离车道预警。这款软件在google play中售价是人民币31块多。根据google play下面的评
2013-03-11 10:28:44
3206
转载 能用到辅助驾驶系统的三个代码:特征点匹配,线段、消失点检测
看到几个代码,一个是特征点匹配,里面包括了SIFT,SURF,FFME等特征点检测和匹配的算法。另一个是线段检测,还有一个多消失点检测的方法。这几个代码都是来自于Marcos Nieto的个人主页【链接】。他的博士学位研究方向就是各种算法在辅助驾驶方面的应用。这个人在西班牙获得博士学位以后,2010年去了一家公司工作,主要从事计算机视觉和机器学习方面的研究。今天推荐这个人的主页,原因是上面
2013-03-11 10:27:00
2977
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人