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

Psim-cn

  • 中青会员消费排行榜-最终版 包括基于Struts+Hibernate的前台和简易后台

    中青会员消费排行榜-最终版 包括基于Struts+Hibernate的前台和简易后台,以及非常不错的美工和强大的查询功能。 具体情况可查看连接:http://www.zqnet8.cn/rank

    标签: Hibernate Struts 排行榜 后台

    上传时间: 2013-12-28

    上传用户:璇珠官人

  • 不带字库LCD12864设计,在田老师的MINI51上测试

    不带字库LCD12864设计,在田老师的MINI51上测试,里面的子函数经典,作者为田开坤老师,http://www.ceet.hbnu.edu.cn/bbs/里面有详细资料

    标签: 12864 MINI LCD 51

    上传时间: 2013-11-26

    上传用户:erkuizhang

  • 程序设计导引及在线实践 本书的最大特点是和“北京大学程序在线评测系统"紧密结合

    程序设计导引及在线实践 本书的最大特点是和“北京大学程序在线评测系统"紧密结合,因而把实践性摆到了一个特殊的地位。“北京大学程序在线评测系统”(简称“POJ”)是一个免费的公益性网上程序设计题库,网址为http://acm.pku.edu.cn/JudgeOnline,它包含2000多道饶有趣味的程序设计题,题目大部分来自ACM国际大学生程序设计竞赛,很多题目就反映工作和生活中的实际问题

    标签: 程序设计 实践 大学 在线评测

    上传时间: 2013-12-13

    上传用户:Yukiseop

  • matlab 仿真实例 本书籍版权归作者所有!请购买纸质书籍支持作者 站内书籍均由网上搜集,为方便网友购买正版之前做参考

    matlab 仿真实例 本书籍版权归作者所有!请购买纸质书籍支持作者 站内书籍均由网上搜集,为方便网友购买正版之前做参考,若无意中侵犯到您的权利请发邮件至:wing2008@yahoo.cn,我们会及时处理。谢谢!

    标签: matlab 书籍 仿真实例

    上传时间: 2013-12-13

    上传用户:虫虫虫虫虫虫

  • 网点后台

    网点后台,NetShop网店系统安装方法 注意: 安装包仅适用于您的站点没有安装过NetShop网店系统的情况下全新安装,如果您的站点曾经安装过NetShop网店系统,则不能使用本包进行安装、升级等操作,否则会清空现有产品使用的的数据库。 详细安装过程如下: 1.解压程序包内的所有文件,使用FTP工具将./upload目录中所有文件上传至服务器; 2.在浏览器中访问:http://您的网址/install/index.aspx; 3.请根据向导,填入必要的信息,开始安装; 特别注意的是,要根据安装向导的提示,正确设置各个目录的读写属性,并保证服务器相关的配置启用 4.安装完毕后为了保证数据安全,务必删除install目录; 如果您还有安装问题,请参考NetShop帮助文档或登录NetShop官网论坛:http://bbs.netshop.net.cn;

    标签: 网点 后台

    上传时间: 2014-11-08

    上传用户:cx111111

  • LatentSVM论文

    The object detector described below has been initially proposed by P.F. Felzenszwalb in [Felzenszwalb2010]. It is based on a Dalal-Triggs detector that uses a single filter on histogram of oriented gradients (HOG) features to represent an object category. This detector uses a sliding window approach, where a filter is applied at all positions and scales of an image. The first innovation is enriching the Dalal-Triggs model using a star-structured part-based model defined by a “root” filter (analogous to the Dalal-Triggs filter) plus a set of parts filters and associated deformation models. The score of one of star models at a particular position and scale within an image is the score of the root filter at the given location plus the sum over parts of the maximum, over placements of that part, of the part filter score on its location minus a deformation cost easuring the deviation of the part from its ideal location relative to the root. Both root and part filter scores are defined by the dot product between a filter (a set of weights) and a subwindow of a feature pyramid computed from the input image. Another improvement is a representation of the class of models by a mixture of star models. The score of a mixture model at a particular position and scale is the maximum over components, of the score of that component model at the given location.

    标签: 计算机视觉

    上传时间: 2015-03-15

    上传用户:sb_zhang

  • 两个链表的交集

    两个链表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{   int data;   struct  Node *next; }Node; void initpointer(struct Node *p){   p=NULL; } int  printlist(struct Node* head){   int flag=1;   head=head->next;   /*   因为标记1的地方你用了头结点,所以第一个数据域无效,应该从下一个头元结点开始   */   if(head==NULL)     printf("NULL\n");   else   {     while(head!=NULL)     {       if(flag==1)       {       printf("%d",head->data);       flag=0;       }       else       {         printf(" %d",head->data);       }       head=head->next;     }     printf("\n");   }   return 0; } struct Node *creatlist(struct Node *head) {      int n;    struct  Node *p1=(struct Node *)malloc(sizeof(struct Node));   p1->next=NULL; while(scanf("%d",&n),n!=-1) {   struct Node *pnode=(struct Node *)malloc(sizeof(struct Node));   pnode->next=NULL;      pnode->data=n;   if(head==NULL)     head=pnode;   p1->next=pnode;   p1=pnode; } return head; } struct Node *Intersect(struct Node *head1, struct Node *head2) { struct Node *p1=head1,*p2=head2;/*我这里没有用头指针和头结点,这里是首元结点head1里面就是第一个数据,一定要理解什么事头指针, 头结点,和首元结点 具体你一定要看这个博客:http://blog.sina.com.cn/s/blog_71e7e6fb0101lipz.html*/ struct Node *head,*p,*q; head = (struct Node *)malloc(sizeof(struct Node)); head->next = NULL; p = head; while( (p1!=NULL)&&(p2!=NULL) ) { if (p1->data == p2->data) { q = (struct Node *)malloc(sizeof(struct Node)); q->data = p1->data; q->next = NULL; p->next = q;//我可以认为你这里用了头结点,也就是说第一个数据域无效     **标记1** p = q; p1 = p1->next; p2 = p2->next; } else if (p1->data < p2->data) { p1 = p1->next; } else { p2 = p2->next; } } return head; } int main() {   struct Node *head=NULL,*headt=NULL,*t;   //initpointer(head);//这里的函数相当于head=NULL;  // initpointer(headt);//上面已经写了headt=NULL那么这里可以不用调用这个函数   head=creatlist(head);   headt=creatlist(headt);   t=Intersect(head,headt);   printlist(t); }

    标签: c语言编程

    上传时间: 2015-04-27

    上传用户:coco2017co

  • S7-200CN解密

    S7-200CN解密,拆机解密,经实践,已证实此方法可以破解迄今为止市面所售的所有西门子 S7-200PLC(进口,国产CN 型)的密码,型号包括(212、214、216、222、22CN、224、 224CN、224XP、224XP CN、226、226CN、226XM)轻松破解3 级和POU 密码。是迄今为 止最为先进且真正实用的解密方法,直接读取PLC 的EEPROM 芯片获取密码。

    标签: S7-200CN解密

    上传时间: 2015-05-06

    上传用户:yzm767

  • 图像边缘检测

    模式识别,图像处理,SVM,支持向量机 §编制程序显示印章图像(24位真彩色位图); §    读出位图中每一像素点的(R,G,B)样本值; §    以RGB其中某两个(或三个)为坐标,取一定数量的图像点为分析样本,分析其坐标系中的分布; §    采用本章将要学习的方法找到分类判别函数,对这些样本进行分类;(要求首先将印章与底纹区分,将印章、底纹、签字区分)

    标签: 模式识别 图像处理

    上传时间: 2015-06-08

    上传用户:alqw

  • C++builder教程

    C++Builder实用教程,C++Builder是有borland公司开发的基于C++的编程软件。

    标签: C++

    上传时间: 2015-07-19

    上传用户:逍15ye