摘要: class circle{public: double r; double pi = 3.1415926; double area = pi*r*r;};//2010编译不通过 2013编译能通过 但是运行结果不是正确的int main03{ circle c1; cout << "input r" 阅读全文
posted @ 2017-03-20 11:49 Shaine 阅读(189) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include<iostream>#include<opencv2/core/core.hpp>#include<opencv2/imgproc/imgproc.hpp>#include<opencv2/highgui/highgui.hpp>using na 阅读全文
posted @ 2017-03-20 11:24 Shaine 阅读(9493) 评论(1) 推荐(0) 编辑
摘要: #include "stdafx.h"#include<iostream>#include<opencv2/core/core.hpp>#include<opencv2/imgproc/imgproc.hpp>#include<opencv2/highgui/highgui.hpp> void sh 阅读全文
posted @ 2017-03-20 11:22 Shaine 阅读(367) 评论(0) 推荐(0) 编辑
摘要: opencv这个工具来进行图像处理。大致是使用C++语言编写程序实现识别算法的实现,所以首先就要进行opencv与VS环境的配置。 Shaine属于那种半路出家之人都算不上的那种,本科期间三四年来学习的真是半吊子,开发方向的东西完全就是一窍不通。而作为一个giser,不可避免的会涉及到开发,也免不了 阅读全文
posted @ 2017-03-20 11:16 Shaine 阅读(1502) 评论(0) 推荐(0) 编辑
摘要: #include "iostream";//包含C++的头文件using namespace std;//使用命名空间std标准的命名空间(在这个命名空间中定义了很多标准定义)void main01(){ //printf("hello...\n"); //cout标准输出,黑屏幕 // <<左移操 阅读全文
posted @ 2017-03-20 10:56 Shaine 阅读(755) 评论(0) 推荐(0) 编辑