搜索资源列表
Word
- 用c++builder6.0编写的类似word的编辑器,有新建,复制,粘贴,打开,编辑,保存,加密,解密,关机,开机
TXL
- 采用链表和文件,有写记录,显示记录,查阅记录,添加记录,删除记录,保存记录等功能-The use of linked lists and documents, have written records, show records, inspection records, add records, delete records, record-keeping and other functions
Electricity
- 电力公司电费收取中涉及的信息主要有:用户号、姓名、类别(居民照明、工业用电)、 起始度、止度、电价、金额、收费单位、日期。要求编程程序实现如下功能: 1)信息录入:当输入用户号为-999时,结束录入,同时将录入的信息以增加的方式 写入到指定的文件中; 2)查询:输入用户号,显示所找到用户的所有信息;3)修改: 输入用户号或姓名,修改指定收费中的相关信息,将修改结果写回文件保存;4)删除: 输入用户号,能够删除指定人员的信息,将删除后结果写回文件;5)排序:要求按姓名 进行
number-recognition
- 学习时字库自动保存,已有键盘字符,字母,数字和简单汉字如要识别复杂汉字,请先用学习功能!-Learning font automatically saved the existing keyboard characters, letters, numbers and simple Chinese characters, such as to recognize the complexity of Chinese characters, please use the learning functi
stu_inf_man_sys
- 学生信息管理系统,每个学生有学号,姓名,分数,性别,年龄等信息,用链表保存。可以实现学生信息的添加,删除,修改,保存到文件中。登录系统需要输入密码。 -Student information management system, each student has a student number, name, grade, gender, age and other information, using linked list. Can realize the student informa
qianjingtiqu
- 从一张图像中获取前景,接着把前景图像保存,头文件里面有详细的说明,一看就会用了-Get prospects one image, then save the foreground image, header files there are detailed instructions, a look will be used
addbook
- 用VC++6以及VC++2010 编译通过的控制台学生通讯录管理系统,利用结构体,指针,单链表,文件读取等C++的知识,功能有建立通讯录,添加,修改,插入,查询,删除,保存等功能其中数据库保存功能自动实现-VC++6 communication with the VC++2010 console students and compile the book management system, using the structure, pointers, linked list, read the
LDFV
- VLAD VLAD可以理解为是BOF和fisher vector的折中 BOF是把特征点做kmeans聚类,然后用离特征点最近的一个聚类中心去代替该特征点,损失较多信息; Fisher vector是对特征点用GMM建模,GMM实际上也是一种聚类,只不过它是考虑了特征点到每个聚类中心的距离,也就是用所有聚类中心的线性组合去表示该特征点,在GMM建模的过程中也有损失信息; VLAD像BOF那样,只考虑离特征点最近的聚类中心,VLAD保存了每个特征点到离它最近的聚类中心的距离;