上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 43 下一页
摘要: 2.Ransac是一种非常简单的算法 用于在一群样本中去掉噪声样本,得到有效的样本采用随机抽样验证的方法,以下节选自wikipedia,选有用的贴了过来RANSACRANSAC is an abbreviation for "RANdom SAmple Consensus". It is an algorithm to estimate parameters of a mathematical... 阅读全文
posted @ 2012-11-25 15:31 gnuhpc 阅读(5029) 评论(0) 推荐(0) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include <stdio.h>#include "cv.h"#include "highgui.h"#include <stdio.h>void f( IplImage* src, IplImage* dst ){ CvMemStorage* storage = cvCr... 阅读全文
posted @ 2012-11-25 15:25 gnuhpc 阅读(2946) 评论(0) 推荐(0) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include "cv.h" #include "highgui.h" #include <stdio.h> int main(int argc,char **argv) { IplImage *src=/blog.armyourlife.info/0,*dst=0,*dst2=0; ... 阅读全文
posted @ 2012-11-25 15:23 gnuhpc 阅读(2285) 评论(0) 推荐(0) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include <iostream>#include <cv.h>//------------ 各種外部変数 ----------//double first[12][2] ={ {488.362, 169.911}, {449.488, 174.44}, {408.565, 17... 阅读全文
posted @ 2012-10-16 22:09 gnuhpc 阅读(1789) 评论(0) 推荐(0) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include <cv.h>#include <highgui.h>#include <iostream>using namespace std;int main( int argc, char **argv){ IplImage *imgA = cvLoadImage( "lena.jpg"... 阅读全文
posted @ 2012-10-16 22:06 gnuhpc 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include "cv.h"#include "highgui.h"int main(int argc, char** argv){ IplImage *src; if( argc == 2 && (src=/blog.armyourlife.info/cvLoadImage(argv[... 阅读全文
posted @ 2012-10-16 21:19 gnuhpc 阅读(2025) 评论(0) 推荐(0) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ 1.书中举了一个鸭子类的设计,有些会飞或者会叫,有些不会飞可能也不会叫,用继承则导致不该有的功能通过继承而继承了下来,使用接口则代码无法做到最大程度的重用。进而引出设计原则1:找出应用中可能需要变化之处,把它们独立出来,不要和那些不需要变化的代码混在一起,把会变化的部分取出并封装起来,好让其他部分不会... 阅读全文
posted @ 2012-10-16 17:48 gnuhpc 阅读(2004) 评论(0) 推荐(1) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ By Winston Churchill The cultivation of a hobby and new forms of interest is a policy of the first importance to a public man.But this is not a bu... 阅读全文
posted @ 2012-10-15 18:02 gnuhpc 阅读(1765) 评论(0) 推荐(0) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ I was always fond of visiting new scenes, and observing strange characters and manners. Even when a mere child I began my travels, and made many tours ... 阅读全文
posted @ 2012-10-15 18:01 gnuhpc 阅读(1350) 评论(0) 推荐(0) 编辑
摘要: 作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include <cv.h>#include <highgui.h>#include <iostream>using namespace std;int main( int argc, char **argv){ IplImage *imgA = cvLoadImage( "lena.jpg"... 阅读全文
posted @ 2012-10-13 21:51 gnuhpc 阅读(2204) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 43 下一页