大数据生态圈,计算机视觉,机器学习,高端技术的爱好者,话不多说,上代码!!!
暂时未有相关通用技术能力~
阿里云技能认证
详细说明摘要 本程序主要参照论文,《基于OpenCV的脱机手写字符识别技术》实现了,对于手写阿拉伯数字的识别工作。识别工作分为三大步骤:预处理,特征提取,分类识别。预处理过程主要找到图像的ROI部分子图像并进行大小的归一化处理,特征提取将图像转化为特征向量,分类识别采用k-近邻分类方法进行分类处理,最后根据分类结果完成识别工作。
#include #include//产生随机数组用 #include //同上 using namespace std; class MyArc { public: int m_beginVex; int m_endVex; int...
// Basic_OpenCV_2.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include "cv.h" #include "highgui.
大体上要注意一下几点内容: 1.vc++目录的选择上,库目录选择为opencv目录中的staticlib目录 2.在链接-》输入-》附加依赖库,中添加,相应的staticlib库目录中的所有条目 我使用的是opencv2.
首先参照下面这里进行opencv x64位机器下面的配置 http://wiki.opencv.org.cn/index.php/VC_2010%E4%B8%8B%E5%AE%89%E8%A3%85OpenCV2.4.4 参考到环境变量处的配置之后,文章中所说的x64位机器环境的配置就不是很清晰了,我自己摸索了一些,其实vs2010本身就不是一个64位的编译器。
#include int m,s,n; int i,j; int a[100][100]; int sf(int n) { if(n%2!=0) printf("输入参数不合法!"); else if(n==2) { a[0][0]=1; ...
#include "stdafx.h" #include #include using namespace std; int tile=0; int *(*board) = NULL;//定义指向指针的指针用于动态的创建用于存储骨牌号的数组 int main() {...
《多核程序设计技术》 第五章——线程api,一个使用windows事件的线程应用程序,vs2008下编译调试通过。 // 线程通信机制.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.
学习使用的书籍:《暗战亮剑——软件漏洞发掘与安全防范实践》 第一章 软件漏洞的分类: 1.缓冲区溢出漏洞 2.整数溢出漏洞 3.格式化字符串漏洞 4.指针覆盖漏洞 5.
下面是一个百度空间的: http://hi.baidu.com/jensenliao 博客园的一篇博客:theONE模拟器简介(主要讲述,软件配置,软件结构) http://www.cnblogs.
/* * vlogger 1.0 * * Copyright (C) 2002 rd * * Please check http://www.thehackerschoice.com/ for update * * This program is free software;...
#include #include #include #define MAX_SIZE 1024 int main() { FILE *fstream = NULL; int error=0; char buff[MAX_SIZE]={0}; if...
#include #include #include #include #include "stdio.h" #include "OperatingIni.h" using namespace std; class ScanDisk //磁盘搜索类 { public: Sc...
#include #include #include #include #pragma comment(lib,"ws2_32.lib") #define PORT 9999 #define IPADDR "127.
#include #include #include #include #pragma comment(lib,"ws2_32.lib") #define PORT 9999 #define IPADDR "127.
#include #include //#include #include #pragma comment(lib, "ws2_32.lib") int main(int argc, char *argv[]) { WSADATA wsadata; WSAStart...
#include #include #include #pragma comment(lib,"ws2_32.lib") #define PORT 6666 #define IPADDR "127.
// MultiThead.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include using namespace std; DWORD WINAPI Fun1Proc( LPVOID l...
// Test_of_callexe.cpp : Defines the entry point for the console application. // #include #include #include #include int main(int arg...
// test_of_malloc.cpp : Defines the entry point for the console application. // #include "stdafx.
下面的代码可以用于跨平台设备信息的获取 搭建传输的socket平台参考下面博文: http://blog.csdn.net/wangyaninglm/article/details/41940287 GetsysInfo.
// NeNe_lesson_object.cpp : Defines the entry point for the console application. // // NeNe_lesson2.
#include "stdafx.h" #include // Windows的头文件 #include //#include // 包含最新的gl.h,glu.h库 //#include // 包含OpenGL实用库 #include // GLaux库...
编译环境:Microsoft Visual c++ 2010 Express 将上一课中的代码做如下修改: int DrawGLScene(GLvoid) // 从这里开始进行所有的绘制 { //glClear(GL_COLOR_BUFFER_BIT | GL_...
首先,我们知道VC的三种Dll分别是 1.non_MFC Dll 2.MFC Regular Dll 3.MFC Extension Dll 平时我们使用在代码中的: #pragma comment(lib,"Test_of_dll.
// setup.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include // Windows的头文件 #include // 包含最新的gl.
2012-4-23 2.The Fingerprint Contrast and Analysis System 3.参照书上代码将程序背景图片处理好。 4.add new image 窗口出现时大小正好为整个客户区 CRect rect; pView->GetClientR...
2012-3-2 linux用户管理 用户信息文件:/etc/passwd 密码文件:/etc/shadow 用户组文件:/etc/group 用户组密码文件:/etc/gshadow 用户配置文件: /etc/login.
2012-2-14 linux 软件包的管理 1.二进制软件包管理(RPM,YUM) 2.源代码包安装 3.脚本安装(shell或者java脚本) 4.debian系linux软件包管理简介 强行卸载-》插入图片 命令:rpm -e --nodeps samba 1.
2012-2-9 星期4 linux 常用命令:压缩解压命令 -gz命令的英文原意:Gnu zip 语法:gzip 选项[文件] 功能描述:压缩文件 压缩后文件格式: .gz 1.
2012-2-8 星期三 文件搜索命令: which [命令名称] 功能:显示系统命令所在目录(绝对路径) $which ls whereis可以表现出命令的帮助信息,帮助文件说存放的信息 find --通用查找命令 语法:find[搜索路径][搜索...
Before my introduction, I have to express my great gratitude to the opportunity of this phone interview your company give to me.
VC之CString,wchar_t,int,string,char*之间的转换 1. CString 转 wchar_t CString path = "asdf"; wchar_t wstr[256] = path.
VC调试(TC或BC用TD调试)时按Alt+8、Alt+6和Alt+5,打开汇编窗口、内存窗口和寄存器窗口看每句C对应的汇编、单步执行并观察相应内存和寄存器变化,这样过一遍不就啥都明白了吗。 (Linux或Unix下可以在用GDB调试时,看每句C对应的汇编并单步执行观察相应内存和寄存器变化。
2012-2-4 文件处理命令:cat 命令英文原意: concateate and display files 命令所在路径:/bin/cat 执行权限:所有用户 语法:cat[文件名] 功能描述:显示文件内容 范例:$cat/etc/issue $cat/...
centos6.0如果采用默认的最小化安装是没有安装桌面环境的,因此需要手动安装桌面环境。 我们可以用 #yum grouplist 查看已经安装的组件,以及支持安装的组件 首先,安装 X window system# yum groupinstall " X Window system"由于centos6.