上海交通大學工程碩士學位論文 本文首先對視頻監控系統的現狀做了簡單分析, 并介紹了本系統 中主要涉及到的相關技術,包括嵌入式技術、圖像壓縮技術、視頻壓 縮技術和移動數據通信技術。具備了一定的理論基礎后,提出本系統 的總體設計方案,明確需要實現的目標功能。然后,圍繞目標方案詳 細介紹了具體實現方法,包括硬件總體結構、嵌入式 Linux的移植、 USB 攝像頭驅動移植、Video4Linux 編程方法、網絡傳輸模塊的開發、 流媒體系統建立、WAP 程序的開發等。最后給出了在現網測試環境中 調測結果。 本系統通過嵌入式芯片實現靜態圖像及視頻的采集、編碼,并將 采集壓縮編碼后的數據傳送到視頻中心服務器, 在2G/3G 移動終端中 以 WAP 或流媒體客戶端方式直接查看遠程圖像。 系統最大的特點是采 用了分布式架構的 C/S(采集端至視頻中心服務器)和 B/S(WAP 服 務器至移動終端)結構便于系統的動態擴展;同時也借助了 WAP 技術 實現了傳統視頻監控的無線化。
上傳時間: 2013-07-05
上傳用戶:cuibaigao
特點: 精確度0.1%滿刻度 可作各式數學演算式功能如:A+B/A-B/AxB/A/B/A&B(Hi or Lo)/|A|/ 16 BIT類比輸出功能 輸入與輸出絕緣耐壓2仟伏特/1分鐘(input/output/power) 寬范圍交直流兩用電源設計 尺寸小,穩定性高
上傳時間: 2014-12-23
上傳用戶:ydd3625
在任意波形發生器設計中,DDS技術具有成本低、功耗小、分辨率高和切換時間快等優點,但波形形狀任意可編輯性較差;軟件無線電技術可產生任意復雜波形,但切換時間慢。采用DDS和軟件無線電相結合的技術,正弦波、三角波、方波等普通信號的產生用DDS實現;復雜無規則波形信號的產生用軟件無線電實現;最后任意波形發生器通過波形存儲器、相位累加器、取樣時鐘發生器、地址發生器等硬件平臺設計和軟件波形算法設計來共同完成。
標簽: 任意波發生器
上傳時間: 2013-11-12
上傳用戶:xinshou123456
三極管代換手冊下載 前言 使用說明 三極管對照表 A B C D E F G H K L M …… 外形與管腳排列圖
上傳時間: 2013-10-24
上傳用戶:zjf3110
五、變頻器外控(二) 利用單片機系統隔離輸出,控制變頻器,實現變頻器的正反轉控制,系統具有啟動、停止按鍵,左限開關和右限開關,啟動后變頻器以800r/min向左運行,當碰到左限開關變頻器以600r/min向右運行,依次循環往返運行。任意時刻按下停止按鈕變頻器停止運行。變頻器運行時使用數碼管分別對應顯示 800和600。可自行增加其他功能,如左右極限保護、報警指示等。 寫出設計思路,畫出硬件接線圖,寫出單片機程序
上傳時間: 2014-12-25
上傳用戶:zhoujunzhen
TLC2543是TI公司的12位串行模數轉換器,使用開關電容逐次逼近技術完成A/D轉換過程。由于是串行輸入結構,能夠節省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應用。 TLC2543的特點 (1)12位分辯率A/D轉換器; (2)在工作溫度范圍內10μs轉換時間; (3)11個模擬輸入通道; (4)3路內置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉換結束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導; (10)可編程輸出數據長度。 TLC2543的引腳排列及說明 TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double sum_final1; double sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe}; void delay(unsigned char b) //50us { unsigned char a; for(;b>0;b--) for(a=22;a>0;a--); } void display(uchar a,uchar b,uchar c,uchar d) { P0=duan[a]|0x80; P2=wei[0]; delay(5); P2=0xff; P0=duan[b]; P2=wei[1]; delay(5); P2=0xff; P0=duan[c]; P2=wei[2]; delay(5); P2=0xff; P0=duan[d]; P2=wei[3]; delay(5); P2=0xff; } uint read(uchar port) { uchar i,al=0,ah=0; unsigned long ad; clock=0; _cs=0; port<<=4; for(i=0;i<4;i++) { d_in=port&0x80; clock=1; clock=0; port<<=1; } d_in=0; for(i=0;i<8;i++) { clock=1; clock=0; } _cs=1; delay(5); _cs=0; for(i=0;i<4;i++) { clock=1; ah<<=1; if(d_out)ah|=0x01; clock=0; } for(i=0;i<8;i++) { clock=1; al<<=1; if(d_out) al|=0x01; clock=0; } _cs=1; ad=(uint)ah; ad<<=8; ad|=al; return(ad); } void main() { uchar j; sum=0;sum1=0; sum_final=0; sum_final1=0; while(1) { for(j=0;j<128;j++) { sum1+=read(1); display(a1,b1,c1,d1); } sum=sum1/128; sum1=0; sum_final1=(sum/4095)*5; sum_final=sum_final1*1000; a1=(int)sum_final/1000; b1=(int)sum_final%1000/100; c1=(int)sum_final%1000%100/10; d1=(int)sum_final%10; display(a1,b1,c1,d1); } }
上傳時間: 2013-11-19
上傳用戶:shen1230
安規設計注意事項1. 件選用(1) 在件選用方面,要求掌握:a .安規件有哪些?(見三.安規件介紹)b.安規件要求安規件的要求就是要取得安規機構的認證或是符合相關安規標準;c.安規件額定值任何件均必須依 MANUFACTURE 規定的額定值使用;I 額定電壓;II 額定電;III 溫額定值;(2). 件的溫升限制a. 一般電子件: 依件規格之額定溫值,決定其溫上限b. 線圈類: 依其絕緣系統耐溫決定Class A ΔT≦75℃Class E ΔT≦90℃Class B ΔT≦95℃Class F ΔT≦115℃Class H ΔT≦140℃c. 人造橡膠或PVC 被覆之線材及電源線類:有標示耐溫值 T 者ΔT≦(T-25)℃無標示耐溫值 T 者ΔT≦50℃d. Bobbin 類: 無一定值,但須做125℃球壓測試;e. 端子類: ΔT≦60℃f. 溫升限值I. 如果有規定待測物的耐溫值(Tmax),則:ΔT≦Tmax-TmraII. 如果有規定待測物的溫升限值(ΔTmax),則:ΔT≦ΔTmax+25-Tmra其中 Tmra=制造商所規定的設備允許操作室溫或是25℃
上傳時間: 2013-10-14
上傳用戶:674635689
這是用verilog寫的一個簡單的處理器,雖然只具有5個指令,但是可以透過這個範例,來了解到cpu的架構,與如何開發處理器,相信會有很大的啟發。
標簽: verilog
上傳時間: 2014-12-08
上傳用戶:ikemada
prolog 找路例子程序: === === === === === === Part 1-Adding connections Part 2-Simple Path example | ?- path1(a,b,P,T). will produce the response: T = 15 P = [a,b] ? Part 3 - Non-repeating path As an example, the query: ?- path2(a,h,P,T). will succeed and may produce the bindings: P = [a,depot,b,d,e,f,h] T = 155 Part 4 - Generating a path below a cost threshold As an example, the query: ?- path_below_cost(a,[a,b,c,d,e,f,g,h],RS,300). returns: RS = [a,b,depot,c,d,e,g,f,h] ? RS = [a,c,depot,b,d,e,g,f,h] ? no ==================================
標簽: Part connections example prolog
上傳時間: 2015-04-24
上傳用戶:ljt101007
This section contains a brief introduction to the C language. It is intended as a tutorial on the language, and aims at getting a reader new to C started as quickly as possible. It is certainly not intended as a substitute for any of the numerous textbooks on C. 2. write a recursive function FIB (n) to find out the nth element in theFibanocci sequence number which is 1,1,2,3,5,8,13,21,34,55,…3. write the prefix and postfix form of the following infix expressiona + b – c / d + e * f – g * h / i ^ j4. write a function to count the number of nodes in a binary tr
標簽: introduction the contains intended
上傳時間: 2013-12-23
上傳用戶:liansi