-
这是MIT人脸库,包括两组,一组人脸库,一组非人脸库,可以用分类器训练,然后用人脸识别程序识别,可以不用购买人脸库了。。。不错的...
这是MIT人脸库,包括两组,一组人脸库,一组非人脸库,可以用分类器训练,然后用人脸识别程序识别,可以不用购买人脸库了。。。不错的-Face arsenal, including two groups, one group of people to face basement, a group inhuman face, you can use the classifier training, and then use face recognition procedures for identification and can be purchased for the face. . . Good.
- 2022-03-21 14:18:49下载
- 积分:1
-
包括很的VFP中使用的控件,包括按钮、菜单位、通信等控件,并带有示例,绝对超值。...
包括很的VFP中使用的控件,包括按钮、菜单位、通信等控件,并带有示例,绝对超值。-There are lots of controls used in VFP, including buttons, menu, communication and so on, and also give the corresponding demonstrations. It s quite absolute overflow.
- 2022-02-25 10:54:05下载
- 积分:1
-
QT下语音识别源代码
QT下的一个语音识别的开发示例,代码简单易懂。
- 2022-04-16 20:43:37下载
- 积分:1
-
Bezier spline curve Curve Generation
Bezier Curve 样条曲线生成-Bezier spline curve Curve Generation
- 2022-05-18 06:41:41下载
- 积分:1
-
A good strong program for many people like to use, very very powerful, Welcome
很好很强大的程序适合很多人使用,很好很强大,欢迎使用-A good strong program for many people like to use, very very powerful, Welcome
- 2022-03-12 21:19:55下载
- 积分:1
-
浮点运算加减乘除四则运算,方法和特别,值得借鉴
浮点运算加减乘除四则运算,方法和特别,值得借鉴-Four floating-point addition and subtraction multiplication and division operations, methods, and in particular, it is worth drawing
- 2023-04-25 08:45:03下载
- 积分:1
-
merger EXE and DLL files. So have an executable file.
合并EXE和DLL文件.使产生一个可执行文件.-merger EXE and DLL files. So have an executable file.
- 2022-03-17 17:36:54下载
- 积分:1
-
wince界面开发demo文件,图像显示界面WINCEUI
wince界面开发demo文件,图像显示界面WINCEUI-wince interface evl
- 2022-03-21 11:37:02下载
- 积分:1
-
该程序实现对残缺棋盘覆盖问题的求解 采用方法:分治方法
该程序实现对残缺棋盘覆盖问题的求解 采用方法:分治方法-the program right chessboard incomplete coverage of the methods used to solve : the administration
- 2022-10-27 16:25:03下载
- 积分:1
-
一个线程池的一个类,基本使用如下:
一个线程驰的类, 下面的是基本的使用方法 struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void * p, char * buf, int len) void OnAccept(SOCKET socket) void OnClose(void * p) } void myIocp::OnAccept(SOCKET socket) { TSession *s = new TSession s->socket = socket //这里可以对连接的session进行自己的操作,例如给id找一个唯一的值 SetIoCompletionPort(socket, s) // 使连接socket与一个自定义结构体关联 } void myIocp::OnRead(void * p, char * buf, int len) { TSession *s = (TSession *)p send(s->socket, buf, len, 0) // 这里只是简单的把收到的消息返回给客户端 ... } void myIocp::OnClose(void * p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) // 开始监听网络端口,等待客户端连接 ... }-A class for thread pool,basic usage below:
struct TSession { SOCKET socket int id } class myIocp:public CIOCP
{ public:
void OnRead(void* p, char* buf, int len)
void OnAccept(SOCKET socket)
void OnClose(void* p) }
void myIocp::OnAccept(SOCKET socket)
{ TSession*s = new TSession s->socket = socket
//here you can do something about connecti
- 2022-07-17 05:14:52下载
- 积分:1