多文件上傳組件 temp.html 上傳調用實例 update_.swf 上傳FLASH文件 update.asp 接收示例 ASP版 update.php 接收示例 php版 詳情訪問 http://www.access2008.cn/update/ -------------------- 歷史更新 -------------------- 1.0.5 bate 版 修正了自動滾動顯示正在上傳的文件列表 在組件右下角增加了上傳文件總數信息 1.0.4 bate 版 添加了對等待上傳文件最大個數控制,參數為 fileNum 添加了上傳數據總量控制,參數為 UpSize,本地判斷用戶可傳輸的流量,最大限度的節省了服務器流量浪費 版
上傳時間: 2014-01-27
上傳用戶:wpt
中青會員消費排行榜-最終版 包括基于Struts+Hibernate的前臺和簡易后臺,以及非常不錯的美工和強大的查詢功能。 具體情況可查看連接:http://www.zqnet8.cn/rank
上傳時間: 2013-12-28
上傳用戶:璇珠官人
不帶字庫LCD12864設計,在田老師的MINI51上測試,里面的子函數經典,作者為田開坤老師,http://www.ceet.hbnu.edu.cn/bbs/里面有詳細資料
上傳時間: 2013-11-26
上傳用戶:erkuizhang
程序設計導引及在線實踐 本書的最大特點是和“北京大學程序在線評測系統"緊密結合,因而把實踐性擺到了一個特殊的地位。“北京大學程序在線評測系統”(簡稱“POJ”)是一個免費的公益性網上程序設計題庫,網址為http://acm.pku.edu.cn/JudgeOnline,它包含2000多道饒有趣味的程序設計題,題目大部分來自ACM國際大學生程序設計競賽,很多題目就反映工作和生活中的實際問題
上傳時間: 2013-12-13
上傳用戶:Yukiseop
matlab 仿真實例 本書籍版權歸作者所有!請購買紙質書籍支持作者 站內書籍均由網上搜集,為方便網友購買正版之前做參考,若無意中侵犯到您的權利請發郵件至:wing2008@yahoo.cn,我們會及時處理。謝謝!
上傳時間: 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
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-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