RoyalGao

要像一棵树栽在溪水旁,按时侯结果子,叶子也不枯干(诗篇)。
Mail: gaoquanning@163.com

导航

2013年5月10日 #

OpenCV学习笔记8_ShowROI_显示感兴趣区域

摘要: ShowROI_显示感兴趣区域ShowROI.c 用复制替换图层,替换出自己感兴趣的ROI#include "stdafx.h"#include "cv.h"#include "highgui.h"#include "cxcore.h"int main(){ IplImage* img; img = cvLoadImage("E:\\TempDataForDebug\\tomato1.jpg"); IplImage* sub_image = cvLoadImage("E:\\TempD 阅读全文

posted @ 2013-05-10 15:02 RoyalGao 阅读(415) 评论(0) 推荐(0)

OpenCV学习笔记7_ImageToBGR_彩色图像三通道转化成BGR3幅单通道图像

摘要: ImageToBGR_彩色图像三通道转化成BGR3幅单通道图像ImageToBGR.c 采用指针偏移#include "stdafx.h"#include "cv.h"#include "highgui.h"#include "cxcore.h"int main(){ IplImage* img; img = cvLoadImage("E:\\TempDataForDebug\\tomato.jpg"); IplImage* b_img; IplImage* g_img; IplImage* r 阅读全文

posted @ 2013-05-10 13:42 RoyalGao 阅读(1466) 评论(0) 推荐(0)