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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

無(wú)線數(shù)(shù)據(jù)(jù)

  • 英文版,pdf格式。 詳細(xì)說明: Title: STL Tutorial and Reference Guide: C++ Programming with the Standard Templa

    英文版,pdf格式。 詳細(xì)說明: Title: STL Tutorial and Reference Guide: C++ Programming with the Standard Template Library (2nd Edition) URL: http://www.amazon.com/exec/obidos/tg/detail/-/0201379236/ ISBN: 0201379236 Author: David R. Musser / Gillmer J. Derge / Atul Saini / Gilmer J. Derge Publisher: Addison-Wesley Page: 560 Edition: 2nd edition (March 27, 2001) Catalog: C++ Format: PDF Size: 3.8M Supplier: December Summary: The Standard Template Library was created as the first library of genetic algorithms and data structures, with four ideas in mind: generic programming, abstractness without loss of efficiency, the Von Neumann computation model, and value semantics. This guide provides a tutorial, a description of each element of the library, and sample applications. The expanded second edition includes new code examples and demonstrations of the use of STL in real-world C++ software development it reflects changes made to STL for the final ANSI/ISO C++ language standard.

    標(biāo)簽: Programming Reference Standard Tutorial

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

    上傳用戶:Breathe0125

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

    1.24位真彩色->256色灰度圖。 2.預(yù)處理:中值濾波。 3.二值化:用一個(gè)初始閾值T對圖像A進(jìn)行二值化得到二值化圖像B。 初始閾值T的確定方法是:選擇閾值T=Gmax-(Gmax-Gmin)/3,Gmax和Gmin分別是最高、最低灰度值。 該閾值對不同牌照有一定的適應(yīng)性,能夠保證背景基本被置為0,以突出牌照區(qū)域。 4.削弱背景干擾。對圖像B做簡單的相鄰像素灰度值相減,得到新的圖像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對G進(jìn)行中值濾波,能夠得到除掉了大部分干擾的圖像C。 6.牌照搜索:利用水平投影法檢測車牌水平位置,利用垂直投影法檢測車牌垂直位置。 7.區(qū)域裁剪,截取車牌圖像。

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

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

    上傳用戶:songrui

  • performs one of the matrix-vector operations y := alpha*A*x + beta*y, or y := alpha*A *x + beta*y, w

    performs one of the matrix-vector operations y := alpha*A*x + beta*y, or y := alpha*A *x + beta*y, where alpha and beta are scalars, x and y are vectors and A is an m by n matrix

    標(biāo)簽: alpha beta matrix-vector operations

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

    上傳用戶:qlpqlq

  • 留言格式新穎。界面美觀

    留言格式新穎。界面美觀,典雅。查看qq,icq資料。設(shè)置面板可設(shè)置參數(shù)。按月份銷毀留言。斑竹回復(fù)且送信給作者。留言和回復(fù)可以選擇肖像,也可以自填。

    標(biāo)簽:

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

    上傳用戶:waizhang

  • 用photoimpact來玩影像魔術(shù)

    用photoimpact來玩影像魔術(shù),漸進(jìn)到多層次的影像處理,讓讀者盡情大玩影像魔術(shù),在不可思議的數(shù)十分鐘,完成你異想天開的想像

    標(biāo)簽: photoimpact

    上傳時(shí)間: 2013-12-09

    上傳用戶:wanghui2438

  • his packet is a IS-95 baseband simulation for 1 data channel of 9.6 KBps rate. The simulation is w

    his packet is a IS-95 baseband simulation for 1 data channel of 9.6 KBps rate. The simulation is written for static channel and AWGN noise. The packet include: 1) Packet Builder (Viterbi Encoding, Interleaver, PN generation) 2) Modulator (RRC filter) 3) Demodulator (Matched Filter, RAKE receiver) 4) Receiver (HD or SD) (Deinterleaver, Viterbi Decoder). You should run "Simulation.m" function that include all modules.

    標(biāo)簽: simulation baseband channel packet

    上傳時(shí)間: 2013-12-23

    上傳用戶:zhangyigenius

  • 編制函數(shù)prime

    編制函數(shù)prime,用來判斷整數(shù)n是否為素?cái)?shù):bool prime(int n); 而后編制主函數(shù),任意輸入一個(gè)大于4的偶數(shù)n,找出滿足n=i+j的所有數(shù)對,其中要求i與j均為素?cái)?shù)(通過調(diào)用prime來判斷素?cái)?shù))。如偶數(shù)18可以分解為11+7以及13+5;而偶數(shù)80可以分解為:43+37、61+19、67+13、73+7。

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

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

    上傳用戶:jennyzai

  • burgers方程的數(shù)值解

    burgers方程的數(shù)值解,包括L-W格式,L-F格式,Upwind格式,以類組織,VC6.0環(huán)境

    標(biāo)簽: burgers 方程 數(shù)值

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

    上傳用戶:小碼農(nóng)lz

  • 使用到的參數(shù)跟談到彈性網(wǎng)絡(luò)的那一章里頭所講的是一樣的

    使用到的參數(shù)跟談到彈性網(wǎng)絡(luò)的那一章里頭所講的是一樣的, ke 則是終止條件。如果 step 被打勾,則程式在每一步之間會(huì)暫停 100毫秒(或其他使用者輸入的數(shù)值)。如果 Random 被打勾,則程式會(huì)以系統(tǒng)時(shí)間作為亂數(shù)產(chǎn)生器的種子數(shù),否則,就以使用者輸入的數(shù)( Random 右邊那一格)為種子數(shù)。 你可以利用 load 來載入推銷員問題檔與其最佳解,如此便可比較彈性網(wǎng)絡(luò)所找出來的解與最佳解差了多少。 Central, Radius, and Error 這三個(gè)參數(shù)的前兩個(gè),只影響彈性網(wǎng)絡(luò)的起使位置和大小,對求解沒有影響。第三個(gè)參數(shù)代表城市與網(wǎng)絡(luò)點(diǎn)之間的容忍距離,也就是說,如果某城市與某網(wǎng)絡(luò)點(diǎn)之間的距離,小于容忍距離,那就把這個(gè)城市當(dāng)成是被該網(wǎng)絡(luò)點(diǎn)所拜訪。 按下小 w按鈕會(huì)將目前的結(jié)果與參數(shù)值寫到“en.out”這個(gè)檔案。使得我們可以很方便地來比較不同參數(shù)的效果。

    標(biāo)簽: 參數(shù) 彈性 網(wǎng)絡(luò)

    上傳時(shí)間: 2013-12-17

    上傳用戶:84425894

  • WAP無線應(yīng)用協(xié)議.包括WAE Wireless Application Enviromnent 無線應(yīng)用環(huán)境, WAP Wireless Application Protocol 無線應(yīng)用協(xié)議,W

    WAP無線應(yīng)用協(xié)議.包括WAE Wireless Application Enviromnent 無線應(yīng)用環(huán)境, WAP Wireless Application Protocol 無線應(yīng)用協(xié)議,WDP Wireless Datagrm Protocol 無線數(shù)據(jù)報(bào)協(xié)議,WML Wireless Markup Language 無線標(biāo)記語言,WSP Wireless Session Protocol 無線會(huì)話協(xié)議,WTA Wireless Telephony Application 無線電話應(yīng)用,WTLS Wireless Transport Layer Security 無線傳輸層安全,WTP Wireless Transaction Protocol 無線事務(wù)協(xié)議

    標(biāo)簽: Application Wireless Enviromnent WAP

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

    上傳用戶:lijinchuan

主站蜘蛛池模板: 嘉鱼县| 花莲县| 来凤县| 临邑县| 封开县| 乌兰浩特市| 夏河县| 洱源县| 潞城市| 屯留县| 岳西县| 龙川县| 江城| 孟连| 余姚市| 台安县| 博罗县| 建水县| 靖宇县| 西乌珠穆沁旗| 芜湖县| 榆林市| 常州市| 治多县| 固原市| 卫辉市| 夹江县| 肃北| 建始县| 淮北市| 根河市| 乌拉特前旗| 巢湖市| 静安区| 大宁县| 崇仁县| 应用必备| 虹口区| 葵青区| 青阳县| 鄯善县|