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

蟲蟲首頁(yè)| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

MEMS???????£????????????????IMU???????£???????????????????????¤???????o???????????????¨???????????????o(t????????????????i)

  • Modicon Premium T PCX 57在郵政分揀系

    摘要:本文詳細(xì)的介紹了基于施耐德Modicon Premium T PCX 57 PLC在郵政自動(dòng)化分揀系統(tǒng)中控制系統(tǒng)的應(yīng)用,系統(tǒng)的網(wǎng)絡(luò)拓?fù)浣Y(jié)構(gòu),工藝流程和信息采集等。關(guān)鍵詞:T PCX57 PLC FIPIO總線 OPC Momentum I/O模塊 分揀系統(tǒng)

    標(biāo)簽: Modicon Premium PCX 分揀

    上傳時(shí)間: 2013-11-10

    上傳用戶:kristycreasy

  • 仿真1:首先把網(wǎng)絡(luò)溫度參數(shù)T固定在100

    仿真1:首先把網(wǎng)絡(luò)溫度參數(shù)T固定在100,按工作規(guī)則共進(jìn)行1000次狀態(tài)更新,把這1000次狀態(tài)轉(zhuǎn)移中網(wǎng)絡(luò)中的各個(gè)狀態(tài)出現(xiàn)的次數(shù)Si(i=1,2,…,16)記錄下來 按下式計(jì)算各個(gè)狀態(tài)出現(xiàn)的實(shí)際頻率: Pi=Si/∑i=1,NSi=Si/M 同時(shí)按照Bo1tzmann分布計(jì)算網(wǎng)絡(luò)各個(gè)狀態(tài)出現(xiàn)概率的理論值: Q(Ei)=(1/Z)exp(-Ei/T) 仿真2:實(shí)施降溫方案,重新計(jì)算 采用快速降溫方案:T(t)= T0/(1+t) T從1000降到0.01,按工作規(guī)則更新網(wǎng)絡(luò)狀態(tài) 當(dāng)T=0.01時(shí)結(jié)束降溫,再讓T保持在0.01進(jìn)行1000次狀態(tài)轉(zhuǎn)移,比較兩種概率

    標(biāo)簽: 100 仿真 網(wǎng)絡(luò)溫度 參數(shù)

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

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

  • In case you haven t realized it, building computer systems is hard. As the complexity of the system

    In case you haven t realized it, building computer systems is hard. As the complexity of the system gets greater, the task of building the software gets exponentially harder. As in any profession, we can progress only by learning, both from our mistakes and from our successes. This book represents some of this learning written in a form that I hope will help you to learn these lessons quicker than I did, or to communicate to others more effectively than I did before I boiled these patterns down.

    標(biāo)簽: complexity the building computer

    上傳時(shí)間: 2015-04-25

    上傳用戶:tyler

  • He was the first one (I noticed of) who coded a decrypter for yC 1.2 :)...good job. Also if it hasn

    He was the first one (I noticed of) who coded a decrypter for yC 1.2 :)...good job. Also if it hasn t full support yet >:-) So as I promised...here s the source code. I hope it helps someone.

    標(biāo)簽: decrypter noticed first coded

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

    上傳用戶:498732662

  • I. Introduction This code exploits a previously undisclosed vulnerability in the bit string deco

    I. Introduction This code exploits a previously undisclosed vulnerability in the bit string decoding code in the Microsoft ASN.1 library. This vulnerability is not related to the bit string vulnerability described in eEye advisory AD20040210-2. Both vulnerabilities were fixed in the MS04-007 patch. II. Screenshots $ ./kill-bill.pl . kill-bill : Microsoft ASN.1 remote exploit for CAN-2003-0818 (MS04-007) by Solar Eclipse <solareclipse@phreedom.org> Usage: kill-bill -p <port> -s <service> host Services: iis IIS HTTP server (port 80) iis-ssl IIS HTTP server with SSL (port 443) exchange Microsoft Exchange SMTP server (port 25) smb-nbt SMB over NetBIOS (port 139) smb SMB (port 445) If a service is running on its default port you don t have to specify both the service and the port. Examples: kill-bill -s iis 192.168.0.1 kill-bill -p 80 192.168.0.1 kill-bill -p 1234 -s smb 192.168.0.1

    標(biāo)簽: I. vulnerability Introduction undisclosed

    上傳時(shí)間: 2015-05-15

    上傳用戶:xhz1993

  • 實(shí)現(xiàn)背包問題 package problem 1. 問題描述 假設(shè)有一個(gè)能裝入總體積為T的背包和n件體積分別為w1 , w2 , … , wn 的物品

    實(shí)現(xiàn)背包問題 package problem 1. 問題描述 假設(shè)有一個(gè)能裝入總體積為T的背包和n件體積分別為w1 , w2 , … , wn 的物品,能否從n件物品中挑選若干件恰好裝滿背包,即使w1 +w2 + … + wn=T,要求找出所有滿足上述條件的解。例如:當(dāng)T=10,各件物品的體積{1,8,4,3,5,2}時(shí),可找到下列4組解: (1,4,3,2)、(1,4,5)、(8,2)、(3,5,2)。 2. 基本要求 讀入T、n、w1 , w2 , … , wn 3.提示: 可利用遞歸方法:若選中w1 則問題變成在w2 , … , wn 中挑選若干件使得其重量之和為T- w1 ,若不選中w1,則問題變成在w2 , … , wn 中挑選若干件使得其重量之和為T 。依次類推。 也可利用回溯法的設(shè)計(jì)思想來解決背包問題。首先將物品排成一列,然后順序選取物品裝入背包,假設(shè)已選取了前i 件物品之后背包還沒有裝滿,則繼續(xù)選取第i+1件物品,若該件物品“太大”不能裝入,則棄之而繼續(xù)選取下一件,直至背包裝滿為止。但如果在剩余的物品中找不到合適的物品以填滿背包,則說明“剛剛”裝入背包的那件物品“不合適”,應(yīng)將它取出“棄之一邊”,繼續(xù)再?gòu)摹八蟆钡奈锲分羞x取,如此重復(fù),,直至求得滿足條件的解,或者無解。 注:沒壓縮密碼

    標(biāo)簽: package problem 體積 w2

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

    上傳用戶:yxgi5

  • 車牌定位---VC++源代碼程序 1.24位真彩色->256色灰度圖。 2.預(yù)處理:中值濾波。 3.二值化:用一個(gè)初始閾值T對(duì)圖像A進(jìn)行二值化得到二值化圖像B。 初始閾值T的

    車牌定位---VC++源代碼程序 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。考慮到文字是由許多短豎線組成,而背景噪聲有一大部分是孤立噪聲,用模板(1,1,1,1,1)T對(duì)G進(jìn)行中值濾波,能夠得到除掉了大部分干擾的圖像C。 6.牌照搜索:利用水平投影法檢測(cè)車牌水平位置,利用垂直投影法檢測(cè)車牌垂直位置。 7.區(qū)域裁剪,截取車牌圖像。

    標(biāo)簽: 1.24 256 圖像 閾值

    上傳時(shí)間: 2013-11-26

    上傳用戶:懶龍1988

  • 提供了一種簡(jiǎn)單的單向“進(jìn)程間通信”(interprocess communication, I P C)機(jī)制。這個(gè)機(jī)制的名字非常古怪

    提供了一種簡(jiǎn)單的單向“進(jìn)程間通信”(interprocess communication, I P C)機(jī)制。這個(gè)機(jī)制的名字非常古怪,叫作“郵槽”(M a i l s l o t)。用最簡(jiǎn)單的話來說,通過 郵槽,客戶機(jī)進(jìn)程可將消息傳送或廣播給一個(gè)或多個(gè)服務(wù)器進(jìn)程。

    標(biāo)簽: communication interprocess 機(jī)制 進(jìn)程間通信

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

    上傳用戶:二驅(qū)蚊器

  • 本附錄介紹一些新的A P I函數(shù)

    本附錄介紹一些新的A P I函數(shù),有了這些函數(shù),便可在自己的計(jì)算機(jī)上對(duì)I P協(xié)議統(tǒng)計(jì)情況 進(jìn)行查詢和管理。它們有助于獲得下面的能力: ■ I p c o n f i g . e x e(或適用于微軟Windows 95的Wi n i p c f g . e x e):顯示I P配置信息,允許釋放 和更新D H C P分配的I P地址。 ■ N e t s t a t . e x e:顯示T C P連接表、U D P監(jiān)聽者表以及I P協(xié)議統(tǒng)計(jì)情況。 ■ R o u t e . e x e:顯示并處理網(wǎng)絡(luò)路由表。 ■ A r p . e x e:顯示并修改供“地址解析協(xié)議”(A R P)使用的I P到物理地址翻譯表。

    標(biāo)簽: 函數(shù)

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

    上傳用戶:569342831

  • a little file,which is made by myself.now i send it to share with you.a wish to improve myself via t

    a little file,which is made by myself.now i send it to share with you.a wish to improve myself via the study with each other.

    標(biāo)簽: myself improve little which

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

    上傳用戶:jkhjkh1982

主站蜘蛛池模板: 鹤岗市| 云林县| 松桃| 阿勒泰市| 南陵县| 荆门市| 汝阳县| 肇庆市| 普宁市| 广德县| 定安县| 福清市| 安仁县| 南溪县| 得荣县| 公主岭市| 盱眙县| 永平县| 东乌珠穆沁旗| 西昌市| 吐鲁番市| 黎川县| 益阳市| 鄄城县| 时尚| 甘肃省| 明星| 通州区| 万全县| 阳泉市| 曲沃县| 沽源县| 和田市| 哈巴河县| 成都市| 赤壁市| 普陀区| 台北市| 富锦市| 康乐县| 南靖县|