上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
  2016年7月9日
摘要: #include <omp.h>#include <stdio.h>#include <stdlib.h> void test(int n){ for (int i = 0; i < 1000000; i++) { } printf("%d,",n);} int main(){//#pragma o 阅读全文
posted @ 2016-07-09 12:01 北海盗 阅读(290) 评论(0) 推荐(0) 编辑
  2016年6月14日
摘要: vm 下的网络配置 阅读全文
posted @ 2016-06-14 22:10 北海盗 阅读(5088) 评论(0) 推荐(1) 编辑
  2016年4月22日
摘要: VMware和centos 阅读全文
posted @ 2016-04-22 12:28 北海盗 阅读(1898) 评论(0) 推荐(1) 编辑
摘要: SecureCRT 的安装和注册 阅读全文
posted @ 2016-04-22 11:50 北海盗 阅读(863) 评论(0) 推荐(0) 编辑
  2015年10月17日
摘要: #include #include #include #include #include void cvShowManyImages(char* title, int nArgs, ...){ IplImage *img; IplImage *DispImage; int size... 阅读全文
posted @ 2015-10-17 10:29 北海盗 阅读(446) 评论(0) 推荐(0) 编辑
摘要: //从视频文件中读入数据-->将数据转换为灰度图-->对图像做canny边缘检测-->将这三个结构显示在一个图像中//作者:sandy//时间:2015-10-10#include #include #include#include void showThreeImage(char *title,i... 阅读全文
posted @ 2015-10-17 10:25 北海盗 阅读(445) 评论(0) 推荐(0) 编辑
  2015年10月11日
摘要: //从视频文件中读入数据-->将数据转换为灰度图-->对图像做candy边缘检测//作者:sandy//时间:2015-10-10#include #include int main(int argc, char *argv[]){ //预备工作 CvCapture* capture=c... 阅读全文
posted @ 2015-10-11 21:34 北海盗 阅读(535) 评论(0) 推荐(0) 编辑
摘要: //使用滑动条实现一个开关功能,用户可以选择打开或是关闭//作者:sandy//时间:2015-10-7/**//创建滑动条函数int cvCreateTrackbar( const char* trackbar_name,//滑动条的名字 const char* ... 阅读全文
posted @ 2015-10-11 21:29 北海盗 阅读(443) 评论(0) 推荐(0) 编辑
摘要: // 鼠标绘图#include using namespace std;//#pragma comment(linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"")const char *pstrWindowsMouseDrawTitle... 阅读全文
posted @ 2015-10-11 21:27 北海盗 阅读(338) 评论(0) 推荐(0) 编辑
摘要: //用鼠标在窗口中画方形//作者:sandy//时间:2015-10-7//user can draw boxes on the screen#include #include using namespace std;CvRect box;bool drawing_box=false;//定义一个回... 阅读全文
posted @ 2015-10-11 21:25 北海盗 阅读(335) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页