虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

lib-svm

  • Purpose: --- -- This component is used for capturing staff from AVI to BMP. Installation:

    Purpose: --- -- This component is used for capturing staff from AVI to BMP. Installation: ------------- Extract the compiled units into your Lib directory or into another directory that is listed in the Library path in your Delphi options. Choose file AVIcap.dcu for register. description: ------------ AVIcap V2.0 used for capturing frame from AVI without drawing on the screen, that is essentially fast. It can be reached by using of avifil32.dll from MS Video For Windows. New property: number of bits per pixel of bitmap.Now you can save BMP using next formats: pf1bit, pf4bit, pf8bit, pf8bitGray, pf15bit, pf16bit, pf24bit, pf32bit, pfDevice. See example to detail.

    标签: Installation component capturing Purpose

    上传时间: 2016-12-13

    上传用户:TF2015

  • 此是关于lisvm的编程

    此是关于lisvm的编程,有助于我们很好的学习svm,可以好好的学习学习

    标签: lisvm 编程

    上传时间: 2016-12-16

    上传用户:hn891122

  • 中文文本分类

    中文文本分类,应用SVM对中文文本进行分类,具有高性能

    标签: 文本分类

    上传时间: 2013-12-11

    上传用户:cc1

  • java与Json实例

    java与Json实例,功能:使用json-lib.jar,使java与json相结合

    标签: java Json

    上传时间: 2016-12-18

    上传用户:wxhwjf

  • gcclib This gcc 1.40 suits for Linux kernel 0.11 - 0.95 Installtion hints -----------------

    gcclib This gcc 1.40 suits for Linux kernel 0.11 - 0.95 Installtion hints ----------------- This suit contains include.taz, local.taz and this README file. You must download the bootimage and rootimage and install them first. The include.taz contains all the include files for using with gcc 1.40. The local.taz contains all the gcc tools & libs stored in two sepearted directories: /usr/local/lib /usr/local/bin You should copy the linux/ asm/ sys/ subdirectories into the include directory from the corresponding kernel source. Installation ------------ Goto the /usr directory. Untar the include.taz to the directory /usr/include. Untar the local.taz to the directory /usr/local. That s it! Example: -------- cd /usr tar zxvf include.taz tar zxvf local.taz

    标签: Installtion gcclib kernel Linux

    上传时间: 2014-03-12

    上传用户:源码3

  • 有关MYSQL的开源码

    有关MYSQL的开源码,生成LIB库可以直接用来开发数据库程序

    标签: MYSQL 开源

    上传时间: 2016-12-28

    上传用户:yuzsu

  • GSM 模块软件开发包 开发包说明 开发包基于GSM模块开发

    GSM 模块软件开发包 开发包说明 开发包基于GSM模块开发,适用于任何希望通过GSM模块来实现短信息系统的系统, 开发包的主要功能是短信息的发送和接收。 开发包包括内容 1、操作使用说明――开发包根目录下为pdf文件,说明了如何正确使用GSM模块; 2、测试工具――/Tools/ 目录下,包括串口测试程序和模块测试程序; 3、开发接口―― /DLL/目录下,包括AscendComm.dll , AscendSMS.dll ,AscendSMS.lib 和AscendSMS 动态链接库接口文档.doc ; 4、例子程序―― /Example/目录下,包括VC,VB,Delphi 等开发工具调用的具体例 子,以及源代码。

    标签: GSM 开发包 模块 软件

    上传时间: 2017-01-06

    上传用户:牧羊人8920

  • 远望谷804系列RFID读写器API稳定。 包括XCRF500API.dll

    远望谷804系列RFID读写器API稳定。 包括XCRF500API.dll,XCRF500API.h,XCRF500API.lib,sysit.cfg

    标签: API RFID XCRF 804

    上传时间: 2013-12-16

    上传用户:清风冷雨

  • 来自网络,国外网友做的,vc++代码,测试过,表示感谢. 可以读取串口GPS数据显示地理位置,需要有外置的串口的GPS接收机连接电脑,在demo主窗口界面可以输出GPS接收的地理位置,经度纬度,时间

    来自网络,国外网友做的,vc++代码,测试过,表示感谢. 可以读取串口GPS数据显示地理位置,需要有外置的串口的GPS接收机连接电脑,在demo主窗口界面可以输出GPS接收的地理位置,经度纬度,时间等信息. 提供给大家深入研究,包含NMEA0183.LIB的源代码,以及SerialCom串口源代码.

    标签: GPS demo 串口 地理

    上传时间: 2017-01-22

    上传用户:zhangyigenius

  • 粒子效果演示(附代码) 利用C++所提供的一些标准容器很容易实现粒子效果. 简单的说就是,将粒子数据写在一个类里面,有一个粒子源,不停地生成粒子,然后放入一个stl::list中(push

    粒子效果演示(附代码) 利用C++所提供的一些标准容器很容易实现粒子效果. 简单的说就是,将粒子数据写在一个类里面,有一个粒子源,不停地生成粒子,然后放入一个stl::list中(push_back()方法), 然后在一个循环中遍例粒子链表,并渲染粒子,粒子的参数并不断更新,如果粒子的ALPHA值小于0,即不可见了,即代表粒子已经死亡, 即从list中删去(erase()方法), 销毁死去的粒子很重要, 如果搞忘了这一步, 你的内存很快就会被吃掉干净了. 第一个版本是用交错平面画的粒子. 第二个版本是用Point Spirit(点精灵)画的粒子, 可以看看效果上面的区别 SPACE - 暂停粒子源发射粒子 LINK中忘记去掉cg.lib cgGL.lib 了, 此程序不需要CG, 如果要编译请去掉.

    标签: list push stl 代码

    上传时间: 2013-12-15

    上传用户:jing911003