OpenCV
kensun0
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
cvMat操作
OpenCV 矩阵操作 CvMat2009年03月17日 星期二 15:38综述: OpenCV有针对矩阵操作的C语言函数. 许多其他方法提供了更加方便的C++接口,其效率与OpenCV一样. OpenCV将向量作为1维矩阵处理. 矩阵按行存储,每行有4字节的校整. 分配矩阵空间:CvMat* cvCreateMat(int rows, int cols, int type); type: 矩阵元素类型. 格式为CV_(S|U|F)C. 例如: CV_8UC1 表示8位无符号单通道矩阵,转载 2011-01-26 10:52:00 · 696 阅读 · 0 评论 -
UBUNTU SERVER 配置网卡
1. 修改interface文件。 vi /etc/network/interfaces添加auto eth0iface eth0 inet dhcpauto wlan0iface wlan0 inet staticaddress 192.168.1.202netmask 255.255.255.0gateway 192.168.1.1d原创 2013-06-29 10:15:11 · 1950 阅读 · 0 评论 -
UBUNTU SERVE 12.04.2 安装 OPENCV2.1
1. 安装编译环境: 更新源:apt-get update apt-get install build-essential cmake pkg-config2. 下载OPENCV2.1源码 解压 tar xvf OpenCV2.1.0.tar.bz2 cd Ope原创 2013-03-09 15:34:32 · 1001 阅读 · 0 评论 -
HAAR FEATURE
Below are examples of the haar-like feature sets that are used in training. It displays what features are used based on the “mode” option used as well as the string representation that will be used in转载 2013-02-04 13:42:18 · 3649 阅读 · 0 评论 -
canny算子得实质
canny算子得实质:如果一个像素的梯度大与上限值,则被认为是边缘像素,如果小于下限阈值,则被抛弃,那么如果该店的梯度位于两者之间呢?则当其与高于上限值的像素点连接时我们才保留,否则删除。转载 2012-06-05 10:02:29 · 501 阅读 · 0 评论 -
DemoCNN_MNIST error
Nice find; thank you for being so thorough in your review. There indeed is an error in the code, specifically, in the calculation of iNumWeight. Here is a correction; note the commented-out line:转载 2011-11-17 14:42:00 · 692 阅读 · 0 评论 -
Learning Deformable Models with Latent SVM
The sample program only demonstrates how to use the latent SVM for classification. The paper describes the training part in details. Although I don't understand all of it, here is the summary:Late转载 2011-11-16 09:16:53 · 1981 阅读 · 0 评论 -
CvArr 竟然是 void
<br />CvArr 竟然是 void 在opencv的大部分函数中经常用到CvArr * 其实也就是 void * 指针 ,在 c中 void * 指针可以被其他类型的指针赋值,狂汗-_-|||,这就是所说的可以被称为一个抽象基类。<br />opencv 的编写采用oop思想,其实也就是 抽象数据类+该类的操作方法(ADT),“CvMat与IplImage之间的关系可以被认为是C++的继承关系”(《学习opencv》),从感官上可以理解为两者都是对一堆0、1数字的包装。CvMat更普遍,IplI转载 2011-05-08 16:24:00 · 1201 阅读 · 0 评论 -
cv::Mat与CvMat区别
用了OpenCV一段时间,发现有cv::Mat和CvMat都可以表示图像数据,只是却不明白他们之间到底什么区别,为什么一定要有这样的两种~Mat。后来跟踪查看了定义,才知道原来cv::Mat是一个类(Class),而CvMat是一个Struct,从类型上就可以知道二者存在很大区别。前者除了几个成员变量之外还有很多的成员函数和重载函数,可以实现很多的图像数据处理功能,而后者只有几个成员变量,要对其成员进行一些处理,需要借用别的函数。转载 2011-01-26 11:00:00 · 3852 阅读 · 1 评论 -
安装ipc与libv4l2cam
1 ipc安装直接make将生成的libipc.a 拷贝到 /usr/local/lib 将生成的ipc.h 拷贝到 /usr/local/include2.libv4l2cam安装修改opencv头文件目录make将生成的libcam.a 拷贝到 /usr/local/lib 将生成的libcam.h 拷贝到 /usr/local/incl原创 2013-06-29 10:21:34 · 1308 阅读 · 0 评论
分享