OpenCV学习笔记6_GetInCvMat_访问CvMat数据块
摘要:
访问CvMat数据块矩阵的维度与通道GetInCvMat.c 注:缺点:这个访问的效率是比较低,两个for()循环的原因,但是它很好的说明了维度和通道的含义#include "stdafx.h"#include "cv.h"#include "highgui.h"#include "cxcore.h"int main(){ float data[18] = { 1 ,2 ,3 ,4 ,5 ,6 , 7 ,8 ,9 ,10,11,12, 13,14,15,16,17,18, }; CvMat mat; cvInitM 阅读全文
posted @ 2013-05-08 21:32 RoyalGao 阅读(346) 评论(0) 推荐(0) 编辑