2009年6月26日

OPENCV 中的图像旋转与缩放

摘要: 在OPENCV中实现图像旋转,可以采用图像的仿射变换形式,下面给出一个样例程序,说明如何实现图像的旋转与缩放。#include "cv.h"#include "highgui.h"#include "math.h"int main( int argc, char** argv ){IplImage* src=0;IplImage* dst = 0; /* the first command li... 阅读全文

posted @ 2009-06-26 21:50 wqj1212 阅读(1795) 评论(1) 推荐(0) 编辑

导航