亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

drag-and-<b>Drop</b>

  • 生產(chǎn)排程計(jì)劃的一份源碼.JAVA.B/S結(jié)構(gòu)的。希望對(duì)一部分人有幫助

    生產(chǎn)排程計(jì)劃的一份源碼.JAVA.B/S結(jié)構(gòu)的。希望對(duì)一部分人有幫助

    標(biāo)簽: JAVA 源碼

    上傳時(shí)間: 2015-08-30

    上傳用戶(hù):小草123

  • BackProp算法:經(jīng)典的B-P算法.

    BackProp算法:經(jīng)典的B-P算法.

    標(biāo)簽: BackProp B-P 算法

    上傳時(shí)間: 2014-11-22

    上傳用戶(hù):xc216

  • by Randal L. Schwartz and Tom Phoenix ISBN 0-596-00132-0 Third Edition, published July 2001. (See

    by Randal L. Schwartz and Tom Phoenix ISBN 0-596-00132-0 Third Edition, published July 2001. (See the catalog page for this book.) the text of Learning Perl, 3rd Edition. Table of Contents Copyright Page Preface Chapter 1: Introduction Chapter 2: Scalar Data Chapter 3: Lists and Arrays Chapter 4: Subroutines Chapter 5: Hashes Chapter 6: I/O Basics Chapter 7: Concepts of Regular Expressions Chapter 8: More About Regular Expressions Chapter 9: Using Regular Expressions Chapter 10: More Control Structures Chapter 11: Filehandles and File Tests Chapter 12: Directory Operations Chapter 13: Manipulating Files and Directories Chapter 14: Process Management Chapter 15: Strings and Sorting Chapter 16: Simple Databases Chapter 17: Some Advanced Perl Techniques Appendix A: Exercise Answers Appendix B: Beyond the Llama Index Colophon

    標(biāo)簽: L. published Schwartz Edition

    上傳時(shí)間: 2014-11-29

    上傳用戶(hù):kr770906

  • by Randal L. Schwartz and Tom Phoenix ISBN 0-596-00132-0 Third Edition, published July 2001. (See

    by Randal L. Schwartz and Tom Phoenix ISBN 0-596-00132-0 Third Edition, published July 2001. (See the catalog page for this book.) Learning Perl, 3rd Edition. Table of Contents Copyright Page Preface Chapter 1: Introduction Chapter 2: Scalar Data Chapter 3: Lists and Arrays Chapter 4: Subroutines Chapter 5: Hashes Chapter 6: I/O Basics Chapter 7: Concepts of Regular Expressions Chapter 8: More About Regular Expressions Chapter 9: Using Regular Expressions Chapter 10: More Control Structures Chapter 11: Filehandles and File Tests Chapter 12: Directory Operations Chapter 13: Manipulating Files and Directories Chapter 14: Process Management Chapter 15: Strings and Sorting Chapter 16: Simple Databases Chapter 17: Some Advanced Perl Techniques Appendix A: Exercise Answers Appendix B: Beyond the Llama Index Colophon

    標(biāo)簽: L. published Schwartz Edition

    上傳時(shí)間: 2015-09-03

    上傳用戶(hù):lifangyuan12

  • Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search ma

    Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search main.cpp Then you can run it: ./search The input is loaded from a input file in.txt Here is the format of the input file: The first line of the input file shoud contain two chars indicate the source and destination city for breadth first and depth first algorithm. The second line of input file shoud be an integer m indicate the number of connections for the map. Following m lines describe the map, each line represents to one connection in this form: dist city1 city2, which means there is a connection between city1 and city2 with the distance dist. The following input are for A* The following line contains two chars indicate the source and destination city for A* algorithm. Then there is an integer h indicate the number of heuristic. The following h lines is in the form: city dist which means the straight-line distance from the city to B is dist.

    標(biāo)簽: Implemented following compile command

    上傳時(shí)間: 2014-01-01

    上傳用戶(hù):lhc9102

  • 1.24位真彩色->256色灰度圖。 2.預(yù)處理:中值濾波。 3.二值化:用一個(gè)初始閾值T對(duì)圖像A進(jìn)行二值化得到二值化圖像B。 初始閾值T的確定方法是:選擇閾值T=Gmax-(Gmax-G

    1.24位真彩色->256色灰度圖。 2.預(yù)處理:中值濾波。 3.二值化:用一個(gè)初始閾值T對(duì)圖像A進(jìn)行二值化得到二值化圖像B。 初始閾值T的確定方法是:選擇閾值T=Gmax-(Gmax-Gmin)/3,Gmax和Gmin分別是最高、最低灰度值。 該閾值對(duì)不同牌照有一定的適應(yīng)性,能夠保證背景基本被置為0,以突出牌照區(qū)域。 4.削弱背景干擾。對(duì)圖像B做簡(jiǎn)單的相鄰像素灰度值相減,得到新的圖像G,即Gi,j=|Pi,j-Pi,j-1|i=0,1,…,439 j=0,1,…,639Gi,0=Pi,0,左邊緣直接賦值,不會(huì)影響整體效果。 5.用自定義模板進(jìn)行中值濾波 區(qū)域灰度基本被賦值為0。考慮到文字是由許多短豎線(xiàn)組成,而背景噪聲有一大部分是孤立噪聲,用模板(1,1,1,1,1)T對(duì)G進(jìn)行中值濾波,能夠得到除掉了大部分干擾的圖像C。 6.牌照搜索:利用水平投影法檢測(cè)車(chē)牌水平位置,利用垂直投影法檢測(cè)車(chē)牌垂直位置。 7.區(qū)域裁剪,截取車(chē)牌圖像。

    標(biāo)簽: Gmax-G 1.24 Gmax 閾值

    上傳時(shí)間: 2014-01-08

    上傳用戶(hù):songrui

  • 《三江學(xué)院師資管理系統(tǒng)》 核心模塊功能簡(jiǎn)介 《三江學(xué)院師資管理系統(tǒng)》是基于B/S架構(gòu)的Web應(yīng)用程序

    《三江學(xué)院師資管理系統(tǒng)》 核心模塊功能簡(jiǎn)介 《三江學(xué)院師資管理系統(tǒng)》是基于B/S架構(gòu)的Web應(yīng)用程序,校園網(wǎng)上任何合法用戶(hù)可以直接訪(fǎng)問(wèn)。一期工程實(shí)現(xiàn)了該系統(tǒng)的核心功能模塊,包括安全認(rèn)證、教師信息維護(hù)、學(xué)科信息維護(hù)、部分報(bào)表打印等功能,該系統(tǒng)已投入試運(yùn)行。目前該系統(tǒng)安裝在計(jì)算機(jī)系應(yīng)用軟件開(kāi)發(fā)組服務(wù)器上,內(nèi)網(wǎng)IP地址為192.168.xxx.xxx。需要訪(fǎng)問(wèn)師資系統(tǒng)的用戶(hù)請(qǐng)?jiān)跒g覽器地址欄輸入

    標(biāo)簽: Web 管理系統(tǒng) 核心 架構(gòu)

    上傳時(shí)間: 2014-01-09

    上傳用戶(hù):獨(dú)孤求源

  • 基于B樣條小波邊緣檢測(cè)算子的應(yīng)用研究

    基于B樣條小波邊緣檢測(cè)算子的應(yīng)用研究,摘自圖形圖像學(xué)報(bào)

    標(biāo)簽: 邊緣檢測(cè) 應(yīng)用研究

    上傳時(shí)間: 2014-11-28

    上傳用戶(hù):來(lái)茴

  • 四種加密解密算法的源代碼/*輾轉(zhuǎn)相除法求a,b的最大公因數(shù)*/

    四種加密解密算法的源代碼/*輾轉(zhuǎn)相除法求a,b的最大公因數(shù)*/

    標(biāo)簽: 加密 解密 算法 源代碼

    上傳時(shí)間: 2015-09-11

    上傳用戶(hù):GavinNeko

  • Ma tla b 是當(dāng)今使用最為廣泛的數(shù)學(xué)軟件

    Ma tla b 是當(dāng)今使用最為廣泛的數(shù)學(xué)軟件,它具有相當(dāng)強(qiáng)大的數(shù)值計(jì)算、數(shù)據(jù)處理、系統(tǒng) 分析、圖形顯示、甚至符號(hào)運(yùn)算功能,是一個(gè)完整的數(shù)學(xué)平臺(tái),但是它不能實(shí)現(xiàn)端口操作和 實(shí)時(shí)控制Borland C + +Builder是一種新穎的可視化編程語(yǔ)言,可方便實(shí)現(xiàn)交互界面、數(shù)據(jù) 采集和端口操作等,但是它在數(shù)值處理分析和算法工具等方面,效率遠(yuǎn)遠(yuǎn)低于Matlab語(yǔ)言

    標(biāo)簽: tla Ma 數(shù)學(xué)軟件

    上傳時(shí)間: 2014-01-24

    上傳用戶(hù):牛津鞋

主站蜘蛛池模板: 京山县| 石泉县| 搜索| 米易县| 寿宁县| 玉溪市| 蓝田县| 定远县| 鸡西市| 涟水县| 旌德县| 临沂市| 米易县| 兖州市| 白河县| 林西县| 嘉禾县| 加查县| 韶山市| 永和县| 永善县| 同仁县| 惠州市| 宾川县| 抚州市| 巴中市| 和平县| 新疆| 佛冈县| 铜山县| 蓬莱市| 土默特左旗| 临洮县| 安陆市| 隆昌县| 湟中县| 读书| 柳江县| 平原县| 永仁县| 长顺县|