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

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

RAW-YUV

  • AD9880色彩空間轉換器用戶指南

    AD9880中的色彩空間轉換矩陣(CSC)是一個3 × 3矩陣,可提供矩陣中所有系數(shù)下的完全編程能力。每個系數(shù)均為12位寬,以保持信號完整性。CSC可在高達150 MHz的速度下運行,在60 Hz速率時支持1080 p。CSC支持“任意至任意”色彩空間,支持RGB、YUV、YCrCb等格式。

    標簽: 9880 AD 色彩 空間轉換器

    上傳時間: 2013-11-16

    上傳用戶:dragonhaixm

  • Arduino學習筆記3_連接HMC5883L三軸電子羅盤傳感器

    用途:測量地磁方向,測量物體靜止時候的方向,測量傳感器周圍磁力線的方向。注意,測量地磁時候容易受到周圍磁場影響,主芯片HMC5883 三軸磁阻傳感器特點(抄自網上): 1,數(shù)字量輸出:I2C 數(shù)字量輸出接口,設計使用非常方便。 2,尺寸小: 3x3x0.9mm LCC 封裝,適合大規(guī)模量產使用。 3,精度高:1-2 度,內置12 位A/D,OFFSET, SET/RESET 電路,不會出現(xiàn)磁飽和現(xiàn)象,不會有累加誤差。 4,支持自動校準程序,簡化使用步驟,終端產品使用非常方便。 5,內置自測試電路,方便量產測試,無需增加額外昂貴的測試設備。 6,功耗低:供電電壓1.8V, 功耗睡眠模式-2.5uA 測量模式-0.6mA   連接方法: 只要連接VCC,GND,SDA,SDL 四條線。 Arduino GND -> HMC5883L GND Arduino 3.3V -> HMC5883L VCC Arduino A4 (SDA) -> HMC5883L SDA Arduino A5 (SCL) -> HMC5883L SCL (注意,接線是A4,A5,不是D4,D5) 源程序: #include <Wire.h> #include <HMC5883L.h> HMC5883Lcompass; voidsetup() { Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.SetScale(1.3); compass.SetMeasurementMode(Measurement_Continuous); } voidloop() { MagnetometerRaw raw = compass.ReadRawAxis(); MagnetometerScaled scaled = compass.ReadScaledAxis(); float xHeading = atan2(scaled.YAxis, scaled.XAxis); float yHeading = atan2(scaled.ZAxis, scaled.XAxis); float zHeading = atan2(scaled.ZAxis, scaled.YAxis); if(xHeading < 0) xHeading += 2*PI; if(xHeading > 2*PI) xHeading -= 2*PI; if(yHeading < 0) yHeading += 2*PI; if(yHeading > 2*PI) yHeading -= 2*PI; if(zHeading < 0) zHeading += 2*PI; if(zHeading > 2*PI) zHeading -= 2*PI; float xDegrees = xHeading * 180/M_PI; float yDegrees = yHeading * 180/M_PI; float zDegrees = zHeading * 180/M_PI; Serial.print(xDegrees); Serial.print(","); Serial.print(yDegrees); Serial.print(","); Serial.print(zDegrees); Serial.println(";"); delay(100); }

    標簽: Arduino 5883L 5883 HMC

    上傳時間: 2013-12-16

    上傳用戶:stella2015

  • Arduino學習筆記3_連接HMC5883L三軸電子羅盤傳感器

    用途:測量地磁方向,測量物體靜止時候的方向,測量傳感器周圍磁力線的方向。注意,測量地磁時候容易受到周圍磁場影響,主芯片HMC5883 三軸磁阻傳感器特點(抄自網上): 1,數(shù)字量輸出:I2C 數(shù)字量輸出接口,設計使用非常方便。 2,尺寸小: 3x3x0.9mm LCC 封裝,適合大規(guī)模量產使用。 3,精度高:1-2 度,內置12 位A/D,OFFSET, SET/RESET 電路,不會出現(xiàn)磁飽和現(xiàn)象,不會有累加誤差。 4,支持自動校準程序,簡化使用步驟,終端產品使用非常方便。 5,內置自測試電路,方便量產測試,無需增加額外昂貴的測試設備。 6,功耗低:供電電壓1.8V, 功耗睡眠模式-2.5uA 測量模式-0.6mA   連接方法: 只要連接VCC,GND,SDA,SDL 四條線。 Arduino GND -> HMC5883L GND Arduino 3.3V -> HMC5883L VCC Arduino A4 (SDA) -> HMC5883L SDA Arduino A5 (SCL) -> HMC5883L SCL (注意,接線是A4,A5,不是D4,D5) 源程序: #include <Wire.h> #include <HMC5883L.h> HMC5883Lcompass; voidsetup() { Serial.begin(9600); Wire.begin(); compass = HMC5883L(); compass.SetScale(1.3); compass.SetMeasurementMode(Measurement_Continuous); } voidloop() { MagnetometerRaw raw = compass.ReadRawAxis(); MagnetometerScaled scaled = compass.ReadScaledAxis(); float xHeading = atan2(scaled.YAxis, scaled.XAxis); float yHeading = atan2(scaled.ZAxis, scaled.XAxis); float zHeading = atan2(scaled.ZAxis, scaled.YAxis); if(xHeading < 0) xHeading += 2*PI; if(xHeading > 2*PI) xHeading -= 2*PI; if(yHeading < 0) yHeading += 2*PI; if(yHeading > 2*PI) yHeading -= 2*PI; if(zHeading < 0) zHeading += 2*PI; if(zHeading > 2*PI) zHeading -= 2*PI; float xDegrees = xHeading * 180/M_PI; float yDegrees = yHeading * 180/M_PI; float zDegrees = zHeading * 180/M_PI; Serial.print(xDegrees); Serial.print(","); Serial.print(yDegrees); Serial.print(","); Serial.print(zDegrees); Serial.println(";"); delay(100); }

    標簽: Arduino 5883L 5883 HMC

    上傳時間: 2014-03-20

    上傳用戶:tianyi223

  • hping 是一個運行在Linux,FreeBSD,NetBSD, OpenBSD, Solaris, MacOs X 命令行方式下的TCP/IP包分析器。它類似于unix命令下的ping命令

    hping 是一個運行在Linux,FreeBSD,NetBSD, OpenBSD, Solaris, MacOs X 命令行方式下的TCP/IP包分析器。它類似于unix命令下的ping命令,但是hping它不能發(fā)送ICMP響應請求。它支持TCP, UDP, ICMP和RAW-IP 協(xié)議。它可以運行在跟蹤模式,在一個隱蔽的通道內發(fā)送文件等各種功能。

    標簽: FreeBSD OpenBSD Solaris NetBSD

    上傳時間: 2014-01-19

    上傳用戶:lhc9102

  • Overview In this chapter I introduce Borland C++Builder (BCB) and explain what it is about. I also d

    Overview In this chapter I introduce Borland C++Builder (BCB) and explain what it is about. I also devote considerable time to explaining the purpose of this book and the philosophy behind my approach to technical writing. Technical subjects covered in this chapter include Creating a simple Multimedia RAD program that plays movies, WAV files, and MIDI files. Shutting down the BCB RAD programming tools and writing raw Windows API code instead. Creating components dynamically on the heap at runtime. Setting up event handlers (closures) dynamically at runtime. A brief introduction to using exceptions. This topic is covered in more depth in Chapter 5, "Exceptions." A brief introduction to ANSI strings. This subject is covered in more depth in Chapter 3, "C++Builder and the VCL." Using the online help. Greping through the include and source files that come with the product and with this book.

    標簽: introduce Overview Borland Builder

    上傳時間: 2014-01-04

    上傳用戶:小鵬

  • 這個剛才那個的源代碼

    這個剛才那個的源代碼,剛才弄錯了。功能:可以從中得到bmp,jpeg,mpeg等的YUV,功能豐富

    標簽: 源代碼

    上傳時間: 2015-07-07

    上傳用戶:zycidjl

  • 優(yōu)化過的xvid1.1.2源代碼

    優(yōu)化過的xvid1.1.2源代碼,獨立解碼器不需要第三方控件,可直接解碼pcm為yuv文件

    標簽: xvid 源代碼

    上傳時間: 2015-09-03

    上傳用戶:asddsd

  • 詳細說明了高通QCP音頻的文件格式

    詳細說明了高通QCP音頻的文件格式,里面附帶有WAVE、VGA、YUV的文件格式說明。

    標簽: QCP 高通 音頻 文件格式

    上傳時間: 2014-12-02

    上傳用戶:cmc_68289287

  • Bing is a point-to-point bandwidth measurement tool (hence the b ), based on ping. Bing determines t

    Bing is a point-to-point bandwidth measurement tool (hence the b ), based on ping. Bing determines the real (raw, as opposed to available or average) throughput on a link by measuring ICMP echo requests roundtrip times for different packet sizes for each end of the link

    標簽: Bing point-to-point measurement determines

    上傳時間: 2015-09-15

    上傳用戶:lgnf

  • WinHex v12.8 sr-6 漢化版『一個很不錯的16進制文件編輯』 WinHex是一個專門用來對付各種日常緊急情況的小工具。它可以用來檢查和修復各種文件、恢復刪除文件、硬盤損壞造成的數(shù)據(jù)丟失

    WinHex v12.8 sr-6 漢化版『一個很不錯的16進制文件編輯』 WinHex是一個專門用來對付各種日常緊急情況的小工具。它可以用來檢查和修復各種文件、恢復刪除文件、硬盤損壞造成的數(shù)據(jù)丟失等。同時它還可以讓你看到其他程序隱藏起來的文件和數(shù)據(jù)。總體來說是一款非常不錯的 16 進制編輯器。得到 ZDNetSoftwareLibrary 五星級最高評價,擁有強大的系統(tǒng)效用。 12.8 sr-2更新內容: * 現(xiàn)在可以在容器根層遞歸探索證據(jù)對象概況,在基于動態(tài)填充設置上,可以在一個方便的平面視圖中列出所有子目錄中的所有文件。 * X-Ways Forensics 現(xiàn)在可以在內部重新匯編硬件 RAID5 系統(tǒng)到級別 0,并且支持奇偶校驗。 * 如果一個 RAID 系統(tǒng)添加到一個容器作為證據(jù)對象,當名稱或位置改變時現(xiàn)在可以很容易替換 RAID 系統(tǒng)的一部分。 * 一些在 RAM 編輯器中被隱藏的進程現(xiàn)在能夠列出。 * 現(xiàn)在可以間接填充證據(jù)文件內容。 * 可以選取報告表中某幾列到容器報名中。(查看容器屬性) * 更進一步改進文件路徑太長的兼容性。 * 修正 12.7 版本自動檢測物理磁盤 RAW 映象為單獨的分區(qū)映象。 * 幾個其它局部改進和錯誤修正 * 針對 UFS 在線提供不同的模板。

    標簽: WinHex 12.8 sr 漢化版

    上傳時間: 2013-12-26

    上傳用戶:13160677563

主站蜘蛛池模板: 成武县| 吴堡县| 云南省| 广水市| 崇礼县| 潞城市| 东丽区| 都昌县| 祥云县| 阿城市| 河北省| 汉中市| 伊春市| 东乌珠穆沁旗| 高清| 鄂托克前旗| 驻马店市| 新安县| 枣庄市| 万宁市| 漠河县| 霍城县| 怀仁县| 祁阳县| 芜湖市| 玛纳斯县| 茶陵县| 万宁市| 奈曼旗| 丰宁| 卓资县| 柳江县| 高台县| 永寿县| 资中县| 滨州市| 贵州省| 于都县| 利津县| 龙里县| 太康县|