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

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

video

<video>是HTML5中的新標簽。
  • Wireless+Communications+over+MIMO+Channels

    Mobile radio communications are evolving from pure telephony systems to multimedia platforms offering a variety of services ranging from simple file transfers and audio and video streaming, to interactive applications and positioning tasks. Naturally, these services have different constraints concerning data rate, delay, and reliability (quality-of-service (QoS)). Hence, future mobile radio systems have to provide a large flexibility and scal- ability to match these heterogeneous requirements.

    標簽: Communications Wireless Channels MIMO over

    上傳時間: 2020-06-01

    上傳用戶:shancjb

  • Wireless+Communications+Resource+Management

    Wirelesscommunications,especiallyinitsmobileform,hasbroughtusthefreedomofmobility andhaschangedthelifestylesofmodernpeople.Waitingatafixedlocationtoreceiveormakea phone call, or sitting in front of a personal computer to send an e-mail or download a video program, has become an old story. Nowadays it is commonplace for people to talk over a cell phonewhilewalkingonthestreet,ortodownloadandwatchamoviewhiletravelingonatrain. Thisisthebenefitmadeavailabletousbythesuccessfulevolutionofwirelesscommunications over three generations, with the fourth generation being under way.

    標簽: Communications Management Wireless Resource

    上傳時間: 2020-06-01

    上傳用戶:shancjb

  • Embedded_Deep_Learning_-_Algorithms

    Although state of the art in many typical machine learning tasks, deep learning algorithmsareverycostly interms ofenergyconsumption,duetotheirlargeamount of required computations and huge model sizes. Because of this, deep learning applications on battery-constrained wearables have only been possible through wireless connections with a resourceful cloud. This setup has several drawbacks. First, there are privacy concerns. Cloud computing requires users to share their raw data—images, video, locations, speech—with a remote system. Most users are not willing to do this. Second, the cloud-setup requires users to be connected all the time, which is unfeasible given current cellular coverage. Furthermore, real-time applications require low latency connections, which cannot be guaranteed using the current communication infrastructure. Finally, wireless connections are very inefficient—requiringtoo much energyper transferredbit for real-time data transfer on energy-constrained platforms.

    標簽: Embedded_Deep_Learning Algorithms

    上傳時間: 2020-06-10

    上傳用戶:shancjb

  • 基于界面操作的人臉心率檢測的代碼

    基于界面操作的人臉心率檢測的代碼,通過攝像頭實時采集人視頻,并計算心率(Face the heart rate detection interface operation based on the code, through real-time acquisition one camera video, and rate)

    標簽: 操作 人臉 代碼 檢測

    上傳時間: 2021-02-24

    上傳用戶:

  • 基于FPGA設計的字符VGA LCD顯示實驗Verilog邏輯源碼Quartus工程文件+文檔說明

    基于FPGA設計的字符VGA  LCD顯示實驗Verilog邏輯源碼Quartus工程文件+文檔說明,通過字符轉換工具將字符轉換為 8 進制 mif 文件存放到單端口的 ROM IP 核中,再從ROM 中把轉換后的數據讀取出來顯示到 VGA 上,FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input                       clk, input                       rst_n, //vga output         output                      vga_out_hs, //vga horizontal synchronization          output                      vga_out_vs, //vga vertical synchronization                   output[4:0]                 vga_out_r,  //vga red output[5:0]                 vga_out_g,  //vga green output[4:0]                 vga_out_b   //vga blue );wire                            video_clk;wire                            video_hs;wire                            video_vs;wire                            video_de;wire[7:0]                       video_r;wire[7:0]                       video_g;wire[7:0]                       video_b;wire                            osd_hs;wire                            osd_vs;wire                            osd_de;wire[7:0]                       osd_r;wire[7:0]                       osd_g;wire[7:0]                       osd_b;assign vga_out_hs = osd_hs;assign vga_out_vs = osd_vs;assign vga_out_r  = osd_r[7:3]; //discard low bit dataassign vga_out_g  = osd_g[7:2]; //discard low bit dataassign vga_out_b  = osd_b[7:3]; //discard low bit data//generate video pixel clockvideo_pll video_pll_m0( .inclk0                (clk                        ), .c0                    (video_clk                  ));color_bar color_bar_m0( .clk                   (video_clk                  ), .rst                   (~rst_n                     ), .hs                    (video_hs                   ), .vs                    (video_vs                   ), .de                    (video_de                   ), .rgb_r                 (video_r                    ), .rgb_g                 (video_g                    ), .rgb_b                 (video_b                    ));osd_display  osd_display_m0( .rst_n                 (rst_n                      ), .pclk                  (video_clk                  ), .i_hs                  (video_hs                   ), .i_vs                  (video_vs                   ), .i_de                  (video_de                   ), .i_data                ({video_r,video_g,video_b}  ), .o_hs                  (osd_hs                     ), .o_vs                  (osd_vs                     ), .o_de                  (osd_de                     ), .o_data                ({osd_r,osd_g,osd_b}        ));endmodule

    標簽: fpga vga lcd

    上傳時間: 2021-12-18

    上傳用戶:

  • 基于FPGA設計的vga顯示測試實驗Verilog邏輯源碼Quartus工程文件+文檔說明 FPGA

    基于FPGA設計的vga顯示測試實驗Verilog邏輯源碼Quartus工程文件+文檔說明,FPGA型號Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。module top( input                       clk, input                       rst_n, //vga output         output                      vga_out_hs, //vga horizontal synchronization          output                      vga_out_vs, //vga vertical synchronization                   output[4:0]                 vga_out_r,  //vga red output[5:0]                 vga_out_g,  //vga green output[4:0]                 vga_out_b   //vga blue );wire                            video_clk;wire                            video_hs;wire                            video_vs;wire                            video_de;wire[7:0]                       video_r;wire[7:0]                       video_g;wire[7:0]                       video_b;assign vga_out_hs = video_hs;assign vga_out_vs = video_vs;assign vga_out_r  = video_r[7:3]; //discard low bit dataassign vga_out_g  = video_g[7:2]; //discard low bit dataassign vga_out_b  = video_b[7:3]; //discard low bit data//generate video pixel clockvideo_pll video_pll_m0( .inclk0(clk), .c0(video_clk));color_bar color_bar_m0( .clk(video_clk), .rst(~rst_n), .hs(video_hs), .vs(video_vs), .de(video_de), .rgb_r(video_r), .rgb_g(video_g), .rgb_b(video_b));endmodule

    標簽: fpga vga顯示 verilog quartus

    上傳時間: 2021-12-19

    上傳用戶:kingwide

  • ADC模數轉換器件Altium Designer AD原理圖庫元件庫

    ADC模數轉換器件Altium Designer AD原理圖庫元件庫SV text has been written to file : 4.4 - ADC模數轉換器件.csvLibrary Component Count : 29Name                Description----------------------------------------------------------------------------------------------------ADC0800             National 8-Bit Analog to Digital ConverterADC0809             ADC0831             ADCADC0832             ADC8                Generic 8-Bit A/D ConverterCLC532              High-Speed 2:1 Analog MultiplexerCS5511              National 16-Bit Analog to Digital ConverterDAC8                Generic 8-Bit D/A ConverterEL1501              Differential line Driver/ReceiverEL2082              Current-Mode MultiplierEL4083              Current Mode Four Quadrant MultiplierEL4089              DC Restored video AmplifierEL4094              video Gain Control/FaderEL4095              video Gain Contol/Fader/MultiplexerICL7106             LMC6953_NSC         PCI Local Bus Power SupervisorMAX4147             300MHz, Low-Power, High-Output-Current, Differential Line DriverMAX4158             350MHz 2-Channel video Multiplexer-AmplifierMAX4159             350MHz 2-Channel video Multiplexer-AmplifierMAX4258             250MHz, 2-Channel video Multiplexer-AmplifierMAX4259             250MHz 2-Channel video Multiplexer-AmplifierMAX951              Ultra-Low-Power, Single-Supply Op Amp + Comparator + ReferenceMAX952              Ultra-Low-Power, Single-Supply Op Amp + Comparator + ReferenceMC1496              Balanced Modulator/DemodulatorPLL100k             Generic Phase Locked LoopPLL10k              Generic Phase Locked LoopPLL5k               Generic Phase Locked LoopPLLx                Generic Phase Locked Loop水位計              

    標簽: adc 模數轉換 altium designer

    上傳時間: 2022-03-13

    上傳用戶:

  • MS9123 USB 投屏控制芯片 數據手冊

    MS9123 是一款單芯片 USB 投屏器,內部集成了 USB2.0 控制器和數據收發模塊、視頻 DAC 和音 視頻處理模塊,MS9123 可以通過 USB 接口顯示或者擴展 PC、智能手機、平板電腦的顯示信息到 更大尺寸的顯示設備上,支持 CVBS、S-video 視頻接口

    標簽: ms9123 USB

    上傳時間: 2022-03-25

    上傳用戶:

  • Altera DE教學開發板中文用戶手冊

    感謝您使用 Altera DE教學開發板。這塊板子的著眼于為在數字邏輯,計算機組織和FPGA方面的學習提供一個理想的工具。它在硬件和CAD工具上應用先進的技術為學生和專業人員展示了一個寬廣的主題。該板具有多種特點,非常適合各大學課程在實驗室環境下的一系列設計項目和非常復雜尖端的數字系統的開發和應用。Altera公司為DE2板提供了套支持文件,例如學習指導,現成的教學實驗練習和豐富的插圖說明DE2的特點DE2板是以 Cyclonell2C35FPGA為特點的672針引腳的包裝。板上所有重要的部件都與板上的芯片相連,使用戶能夠控制板上各種的操作DE2板包括了很多開關(兼有撥動開關和按鍵),發光二極管和七段數碼管。在更多進一步的實驗中還用到了SRAM,SDRAM Fash以及16×駙字符液晶。需要進行處理器和O接口試驗時,可以簡單的用 Altera Niosll處理器和象RS-232和PS/2標準接口。進行涉及音頻和視頻的實驗時,也有標準MC、line-in video-in(TV Decoder)和VGA(10-bit dac),這些特點都能夠被用來制作CD質量的音頻應用程序和專業的視頻圖象。為了能夠設計更強大的項目,DE2還提供了USB20接口(包括主、從USB),10/100M自適應以太網,紅外(lRDA)接口,以及SD卡接口。最后,可以通過兩排擴展O口與其它用戶自定義的板子相連。

    標簽: altera

    上傳時間: 2022-04-01

    上傳用戶:bluedrops

  • ICN6202規格書V10

    ICN6201/02 is a bridge chip which receives MIPI? DSI inputs and sends LVDS outputs. MIPI? DSI supports up to 4 lanes and each lane operates at 1Gbps maximum; the totally maximum input bandwidth is 4Gbps; and the MIPI defined ULPS(ultra-low-power state) is also supported. ICN6201 decodes MIPI? DSI 18bepp RGB666 and 24bpp RGB888 packets.The LVDS output 18 or 24 bits pixel with 25MHz to 154MHz, by VESA or JEIDA format.ICN6201/02 support video resolution up to FHD (1920x1080) and WUXGA (1920x1200).ICN6201 adopts QFN48 package and ICN6202 adopts QFN40 package

    標簽: icn6202

    上傳時間: 2022-06-10

    上傳用戶:kingwide

主站蜘蛛池模板: 云龙县| 资溪县| 金川县| 广西| 随州市| 滕州市| 建水县| 县级市| 黄梅县| 措勤县| 尼木县| 额尔古纳市| 呼伦贝尔市| 新田县| 蕲春县| 珠海市| 巨野县| 海淀区| 灵宝市| 柘城县| 双鸭山市| 张北县| 晋宁县| 始兴县| 瓮安县| 商都县| 新龙县| 井陉县| 永善县| 连平县| 普陀区| 嘉祥县| 井冈山市| 堆龙德庆县| 东光县| 石台县| 淮安市| 天台县| 南澳县| 柳河县| 康乐县|