
OpenCV
文章平均质量分 50
aban-mtd
真诚、负责、踏实
展开
-
写个OpenCV的小程序
#include #include "cv.h"#include "highgui.h"#define LONGESTPATH 512/************************** path : the path of frames* lenPath : how many bytes in path* frameNum : the number of frame you原创 2013-04-16 22:10:17 · 2254 阅读 · 0 评论 -
[OpenCV] Write & Read files
例如写 KeyPoint向量,以及他的描述矩阵。// ...vector<KeyPoint> key_points;Mat descriptors;// ...fs.open(out_file, FileStorage::WRITE);write(fs, "key_points", key_points);write(fs, "descriptors", descriptors);fs原创 2015-09-24 22:47:51 · 1667 阅读 · 0 评论 -
[code segments] OpenCV3.0 SVM with C++ interface
talk is cheap, show you the code:/************************************************************************//* Name : OpenCV SVM test *//* Date : 2015/1原创 2015-12-29 21:41:40 · 2141 阅读 · 0 评论 -
XML Condition And
<Target Name="CustomBuildStep" Condition="'@(CustomBuildStep)' != '' and '$(SelectedFiles)'==''" Inputs="%(CustomBuildStep.Inputs);$(ProjectFileName)" Outputs="%(CustomBui原创 2015-11-30 16:05:44 · 2152 阅读 · 2 评论 -
[OpenCV] GpuMat and Mat, compare cvtColor perforemence
IntroductionI am going to measure the performence of my two GT650M and compare GPU with CPU version.code segments#include <iostream>#include <omp.h>using namespace std;#include <cuda_runtime.h>#inclu原创 2015-11-29 21:28:47 · 3779 阅读 · 1 评论 -
[OpenCV] 编译源程序 2.4.10 以支持 CUDA
对源代码进行如下修改:H:\Software\opencv\sources\modules\gpu\src\nvidia\core\NCV.cu中添加#include <algorithm>原创 2015-11-30 16:56:21 · 1752 阅读 · 2 评论 -
OpenCV+VS2013 属性表配置
简介计算机视觉任务越来越多的依赖著名的开源计算机视觉库OpenCV。OpenCV 2.0 包含了一系列精心设计数据结构和经过优化的视觉算法,大家可以短时间内开发一个不错的视觉应用。OpenCV支持多种不同的硬件和软件平台,这也是它被广泛应用的一个重要原因。使用C/C++开发OpenCV程序,需要告知编译器、连接器相应的头文件目录、库文件以库文件的目录,在开发不同的项目的时候,每次都分别指定这三项内容原创 2016-03-22 20:22:56 · 5129 阅读 · 2 评论 -
OpenCV 2.x/3.x 随机初始化矩阵
简介在测试算法的时候,或者某些算法需要使用随机数,本文介绍如何使用OpenCV的随机数相关功能。主要内容: 1. cv::RNG类 —— random number generator 2. cv::randu —— 填充均匀分布随机数 3. cv::randn —— 填充高斯分布随机数cv::RNGRNG是OpenCV用来产生随机数的类,他可以产生标量随机数,也可以使用随机数填充Mat对象。原创 2016-03-31 13:17:27 · 6406 阅读 · 0 评论 -
OpenCV RGB2LAB执行效率测试
代码#include <iostream>#include <vector>#include <opencv2/opencv.hpp>#define ERROR_OUT__ std::cerr<<"[ERROR][File:"<<__FILE__<<"][Line:"<<__LINE__<<"]"#ifndef _DEBUG#define TB__(A) int64 A; A = cv::ge原创 2016-03-31 20:00:41 · 3886 阅读 · 0 评论 -
OpenCV multiple version on Linux ENV script of setting
I have multiple version of OpenCV, 2.4.13 and 3.1.0, on my Ubuntu 14.04.4 LTS. The developted applications depends on either one. To keep all the OpenCV versions, I wrote a script to set corresponding原创 2016-06-28 03:27:40 · 1195 阅读 · 0 评论 -
OpenCV type to str
简介这是一个可以用于调试的函数,以整型类型作为输入,输出一个标识元素类型的字符串。代码string type2str(int type) { string r; uchar depth = type & CV_MAT_DEPTH_MASK; uchar chans = 1 + (type >> CV_CN_SHIFT); switch (depth) { ca原创 2016-06-17 19:27:03 · 1409 阅读 · 0 评论 -
OpenCV 读取 CSV 数据文件
简介CSV格式的文件可以用来保存在存储数据。此文提供一段代码用于读取CSV文件数据到Mat中。注意,在实际应用中,应该事先知道CSV存储的单个数据的类型。所以在读取到Mat之后,要转换成自己了解实际使用的数据。代码#include <string>using namespace std;#include <opencv2/opencv.hpp>using namespace cv;int rea原创 2016-06-17 19:48:02 · 4566 阅读 · 2 评论 -
Matlab to OpenCV Mat
convert Matlab matrix to OpenCV Mat. Support CV_32FC3 only currently.原创 2015-10-10 19:39:25 · 1873 阅读 · 0 评论 -
Compile C++ code in Matlab with OpenCV support
Provides a function named as “mex_opencv(src)”原创 2015-10-10 17:01:51 · 1504 阅读 · 0 评论 -
[OpenCV] How to install opencv by compiling source code
IntroductionInstall OpenCV and its dependence !STEPs1, compilersudo apt-get install build-essential checkinstall cmake2,Install gstreamersudo apt-get install libgstreamer0.10-0 lib原创 2015-06-08 14:04:07 · 1567 阅读 · 0 评论 -
imshow使用OpenCV
只有一段代码void imshow(const char *name, const CvArr *img){ cvNamedWindow(name,CV_WINDOW_AUTOSIZE); cvShowImage(name, img); cvWaitKey(0); cvDestroyWindow(name);}原创 2013-05-15 21:12:48 · 19277 阅读 · 0 评论 -
Ubuntu下安装GTK环境
要生成C图形界面的程序,得安装GTK环境 安装GTK环境只要安装一个gnome-core-devel就可以了,里面集成了很多其他的包。除此之外还要转一些其他的 东西,如libglib2.0 -doc、libgtk2.0-doc帮助文档,devhelp帮助文档查看,glade-gnome、glade-common、glade-doc图形界面设计等。 代码:转载 2013-08-08 17:23:25 · 2203 阅读 · 0 评论 -
一个GCC4.6.3的奇妙问题的糊涂解决方案
因为工作中需要OpenCV,又不想用Windows,所以我就在Linux下编译安装OpenCV了。一开始,由于我的计算机不能安装ubuntu12.04,所以我安装了ubuntu13.04,opencv的环境也配置的很顺利。Ubuntu 13.04 的编译问题与解决方案在13.04上安装完成opencv后,我便兴冲冲的实验了一把,其实我的程序什么也没有做,只是添加了包含了open原创 2013-08-09 09:27:39 · 2845 阅读 · 0 评论 -
VisualStudio2010配置OpenCV的一种一劳永逸的方法
讲解如何一劳永逸的创配置OpenCV环境的其中一个方法。原创 2014-06-05 20:15:51 · 44314 阅读 · 5 评论 -
OpenCV, MatBGR2ARGB, ARGB2MatBGR
代码片段~unsigned int* abMatBGR2ARGB(Mat imag){ int nCols; int nRows; unsigned int *pbuff = NULL; if(imag.empty()) { cerr << "Failed read the image data." << endl; return NULL; } if原创 2014-06-09 16:40:07 · 2321 阅读 · 0 评论 -
使用C++将OpenCV中Mat的数据写入二进制文件,用Matlab读出
在使用OpenCV开发程序时,如果想查看矩阵数据,比较费劲,而matlab查看数据很方便,文中给出了一种联合C++,OpenCV和Matlab的调试方式。原创 2014-06-12 22:13:40 · 10730 阅读 · 2 评论 -
使用OpenCV读、操作、写图像并与bash合作对某个目录下所有图像进行类似处理
我门要对某个目录下所有图像文件进行统一处理,如果图像的数量过多,那么手动地一张张处理就会显得有些麻烦。本文使用OpenCV和bash来完成我们指定的任务。原创 2014-10-29 10:48:06 · 1914 阅读 · 0 评论 -
linux源码编译安装OpenCV
为了尽可能保证OpenCV的特性,使用OpenCV源码编译安装在linux上。先从安装其依赖项开始,以ubuntu 14.04.X为例讲解在Linux上源码编译安装OpenCV,其他linux版本可以类比安装。原创 2014-11-19 17:27:11 · 9724 阅读 · 1 评论 -
[OpenCV]拓展图像边界
图像处理中经常遇到使用当前像素邻的像素来计算当前像素位置的某些属性值,这样就会导致边界像素处越界访问,一般有两种方法解决这种问题:只对不越界的像素进行处理;对图像边界进行拓展,本文主要介绍如何使用OpenCV简单的对边界进行拓展。原创 2014-11-27 09:52:04 · 8037 阅读 · 0 评论 -
OpenCV:Mat元素访问方法、性能、代码复杂度以及安全性分析
本文讲述了OpenCV中几种访问矩阵元素的方法,在指定平台上给出性能比较,分析每种矩阵元素访问方法的代码复杂度,易用性。原创 2014-06-14 11:45:17 · 44279 阅读 · 4 评论 -
[OpenCV]在显示窗口中截图
介绍使用OpenCV实现简单的截图功能。首先阐述实现此功能的基本步骤,然后给出实现代码,最后贴出实验结果和一点点评。原创 2015-03-08 13:29:36 · 9768 阅读 · 3 评论 -
buildcv useful tool for maltab
function buildcv(src)ARC = 'x64';BIN_PATH = ['D:\libs\cv\2.4.10\', ARC ,'\vc12.0\bin'];INC_OPT = '-ID:\libs\cv\2.4.10\include\opencv ';INC_OPT = [INC_OPT, '-ID:\libs\cv\2.4.10\include '];LIB_PATH = [原创 2016-12-12 19:59:14 · 723 阅读 · 0 评论