码迷,mamicode.com
首页 >  
搜索关键字:mat    ( 14954个结果
keypoint && DMatch
下面单独介绍KEYPOINT 与DMatch的内在联系 1 std::vector points1, points2; 2 3 for (std::vector::const_iterator it= matches.begin(); 4 it!= mat...
分类:其他好文   时间:2015-06-22 13:40:16    阅读次数:303
小波变换 C++ opencv 实现
小波变换 C++ opencv 实现小波简介:http://www.blogbus.com/shijuanfeng-logs/221293135.html源码:/// 小波变换Mat WDT( const Mat &_src, const string _wname, const int _lev....
分类:编程语言   时间:2015-06-19 20:15:41    阅读次数:147
C++实现矩阵卷积
int kernel_x;int kernel_y;int mat_x;int mat_y;int **kernel;int **mat;int pos_archor_x;int pos_archor_y;void getValue(int pos_x,int pos_y){ int temp_x_...
分类:编程语言   时间:2015-06-18 13:06:14    阅读次数:187
MAT(Memory Analyzer Tool)工具入门介绍
转载:http://blog.csdn.net/aaa2832/article/details/194196791内存泄漏的排查方法Dalvik Debug Monitor Server (DDMS)是ADT插件的一部分,其中有两项功能可用于内存检查:·heap查看堆的分配情况·allocation...
分类:其他好文   时间:2015-06-18 13:00:02    阅读次数:165
Opencv 笔记 opencv tutorial 2.1节 mat
前言:opencv中,mat类型非常基础和重要。以下是opencv tutorial 2.1章节的中英文整理。 Mat 简介 IplImage c 结构 需要管理内存 mat是c++中的类class 自动内存分配 Mat  包括: header  A pointer to the matrix containing the pixel values  (can take ...
分类:其他好文   时间:2015-06-17 23:27:33    阅读次数:285
OpenCV4Android 特征点提取演示
OpenCV4Android 特征点提取演示前面通过两天的时间,也只是熟悉了基本的环境搭建,明确了基本的部件流程,接下来需要熟悉API,进行实际的应用编程。本篇尝试获取图片的SIFT特征点,并学习相应的API及图像处理基本知识。目标: - 定义Native method 接口 - Bitmap 和 opencv Mat 之间的转换 - 通过org.opencv.core.Mat.getN...
分类:移动开发   时间:2015-06-17 21:36:28    阅读次数:200
opencv中ptr的使用
#include #include#include#includeusing namespace cv;void colorReduce(Mat &image,int div =64){ int nl = image.rows; int nc =image.cols*image.chan...
分类:其他好文   时间:2015-06-17 10:51:38    阅读次数:239
突击优化算法!
Matlab语言可以与C/C++语言转换或调用。Matlab语句:load name 把name中文件的所有变量载入到工作空间中。save name 保存工作空间的变量到name.mat中。cholesky分解把一个正定矩阵分为一个下三角矩阵和它转置矩阵的乘积。两种创立符号函数的方法:sym函数与s...
分类:编程语言   时间:2015-06-16 21:05:55    阅读次数:220
开始了 新的 ACM 搜索!
希望 现在 到 暑假 做够100到搜索题!hdu1010#include #include using namespace std;int vis[10][10];char mat[10][10];int ok,T,M,N;void visit(int i,int j,int cur){ if(cu...
分类:其他好文   时间:2015-06-16 14:28:54    阅读次数:158
opencv中相关的矩阵运算
一、矩阵Mat I,img,I1,I2,dst,A,B;double k,alpha;Scalar s;1.加法I=I1+I2;//等同add(I1,I2,I);add(I1,I2,dst,mask,dtype);scaleAdd(I1,scale,I2,dst);//dst=scale*I1+I2...
分类:其他好文   时间:2015-06-15 22:06:30    阅读次数:163
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!