赞
踩
分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow
也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!
以下代码是从文件中读取数据数据格式是,整形数据有空格分隔,然后用OpenCV曲线拟合显示:
#include <stdio.h>#include <cv.h>#include <highgui.h>#pragma comment(lib, "cv.lib")#pragma comment(lib, "cxcore.lib")#pragma comment(lib, "highgui.lib")void put_data_into_array(CvPoint dataarray[], CvPoint data, int n){ for(int i = 0; i < n - 1; i++) dataarray[i] = dataarray[i+1]; dataarray[n - 1] = data;}int main(int argc, char* argv[]){ IplImage* img = cvCreateImage( cvSize( 500, 500 ), 8, 3 ); cvNamedWindow( "fitline", 1 ); CvPoint pt1, pt2; // 直线的两个端点 CvPoint* points = (CvPoint*)malloc( 6 * sizeof(points[0])); // 存放随机产生的点点,数目为count CvMat pointMat = cvMat(1, 6, CV_32SC2, points); // 点集, 存储count个随机点points float line[4]; // 输出的直线参数。2D 拟合情况下,它是包含 4 个浮点数的数组 (vx, vy, x0, y0) //其中 (vx, vy) 是线的单位向量而 (x0, y0) 是线上的某个点 float t; FILE *fp = fopen("
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。