博碩士論文 100523043 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:34 、訪客IP:18.191.212.181
姓名 廖彩伶(Tsai-Ling Liao)  查詢紙本館藏   畢業系所 通訊工程學系
論文名稱 H.264/AVC至HEVC視訊轉碼之預測單位快速決策演算法
(A fast PU mode decision algorithm for H.264/AVC to HEVC transcoding)
相關論文
★ 基於區域權重之衛星影像超解析技術★ 延伸曝光曲線線性特性之調適性高動態範圍影像融合演算法
★ 實現於RISC架構之H.264視訊編碼複雜度控制★ 基於卷積遞迴神經網路之構音異常評估技術
★ 具有元學習分類權重轉移網路生成遮罩於少樣本圖像分割技術★ 具有注意力機制之隱式表示於影像重建 三維人體模型
★ 使用對抗式圖形神經網路之物件偵測張榮★ 基於弱監督式學習可變形模型之三維人臉重建
★ 以非監督式表徵分離學習之邊緣運算裝置低延遲樂曲中人聲轉換架構★ 基於序列至序列模型之 FMCW雷達估計人體姿勢
★ 基於多層次注意力機制之單目相機語意場景補全技術★ 基於時序卷積網路之單FMCW雷達應用於非接觸式即時生命特徵監控
★ 視訊隨選網路上的視訊訊務描述與管理★ 基於線性預測編碼及音框基頻週期同步之高品質語音變換技術
★ 基於藉語音再取樣萃取共振峰變化之聲調調整技術★ 即時細緻可調性視訊在無線區域網路下之傳輸效率最佳化研究
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) H.264/AVC為目前主要流通的視訊壓縮編碼標準之一,然而隨著我們對於視訊品質的要求越來越高,舊的壓縮標準已不敷使用,所以在西元2013年4月的時候,JCT-VC推出了新一代視訊壓縮編碼標準HEVC,在未來HEVC將會逐漸廣泛應用於各項產品之中,因此該如何有效率地將H.264/AVC轉換編碼至HEVC便成為一項重要的課題。
本論文提出一套H.264/AVC至HEVC快速轉換編碼演算法,重複利用H.264/AVC解碼之特徵資訊如運動向量、預測模式、預測殘餘值等做為演算法判斷準則,分別對預測單位模式提出快速決策方法,以及針對移動估測提出快速搜尋方法,達到加速轉換編碼之效果,實驗結果顯示最多可節省至53%的運算複雜度,約可省去一半以上的編碼時間並維持良好視訊壓縮效率,因此本論文所提出之演算法在編碼時間節省上具有相當優勢。
摘要(英) H.264/AVC is one of the most commonly applied video compression standards. However, with the increasing demands on high quality video applications, previous standards are not efficient enough to support the new requirements. Thus, a new video compression standard, High Efficient Video Coding (HEVC), had been developed and finalized by JCT-VC in April 2013. With the high coding efficiency, it can be expected that HEVC will be widely adopted for many applications in the future. Therefore, it becomes an important issue to efficiently transcode H.264/AVC to HEVC.
In this thesis, we propose a fast transcoding algorithm for H.264/AVC to HEVC. The proposed algorithm reuses coding information from H.264/AVC decoder such as motion vectors, coding modes, and residual values to speed up the prediction process for the HEVC encoder. The proposed algorithm is composed of two parts to speed up the transcoding process. One is fast algorithm for the prediction unit (PU) mode decision, and the other is the adaptive search range selection to save time for the motion estimation. Experimental results show that computational complexity can be saved up to 53%. That is, more than half of the encoding time is reduced under good rate-distortion (R-D) performance.
關鍵字(中) ★ H.264/AVC
★ HEVC
★ 轉碼
★ 預測單位
關鍵字(英)
論文目次 摘要 i
Abstract ii
致謝 iii
目錄 iv
圖目錄 vii
表目錄 x
第一章 緒論 1
1.1 研究背景 1
1.2 研究動機與目的 2
1.3 論文架構 3
第二章 HEVC視訊編碼標準介紹 4
2.1 HEVC視訊編碼介紹 4
2.2 HEVC視訊編碼基本單位 6
2.2.1 編碼單位(Coding Unit) 7
2.2.2 預測單位(Prediction Unit) 8
2.2.3 轉換單位(Transform Unit) 10
2.3 HEVC視訊編碼技術 11
2.3.1 畫面內預測(Intra Prediction) 12
2.3.2 畫面間預測(Inter Prediction) 14
2.3.3 轉換及量化(Transform and Quantization) 20
2.3.4 熵編碼(Entropy Coding) 21
2.3.5 迴路濾波器(Loop Filter) 22
第三章 視訊轉換編碼介紹 25
3.1 視訊轉換編碼系統 25
3.1.1 視訊轉換編碼器介紹 26
3.1.2 像素域轉換編碼器 27
3.1.3 轉換域轉換編碼器 28
3.2 H.264/AVC至HEVC轉碼相關文獻探討 29
第四章 預測單位之快速轉換編碼演算法 35
4.1 H.264/AVC解碼器之特徵資訊擷取 35
4.2 HEVC模式決策及移動搜尋介紹 38
4.3 當編碼單位對應數個巨區塊之演算法 41
4.3.1 預測單位模式快速決策演算法 42
4.3.2 移動估測快速搜尋演算法 54
4.4 當編碼單位對應唯一巨區塊之演算法 58
4.4.1 預測單位模式快速決策演算法 59
4.4.2 移動估測快速搜尋演算法 69
4.5 快速轉換編碼演算法之流程 70
第五章 實驗結果及討論 76
5.1 實驗參數環境設定 76
5.1.1 測試視訊序列 76
5.1.2 實驗環境 77
5.2 實驗結果 78
5.2.1 快速模式決策演算法效能分析 78
5.2.2 快速移動估測演算法效能分析 79
5.2.3 整體演算法效能分析 80
第六章 結論與未來展望 82
參考文獻 83
參考文獻 [1] Advanced Video Coding, ITU-T Rec. H.264 and ISO/IEC 14496-10 (MPEG-4 AVC), Version 13, Mar. 2011.
[2] JCT-VC, “High Efficiency Video Coding (HEVC) text specification draft 10,” JCTVC-L1003, 12th JCTVC meeting, Geneva, Jan. 2013.
[3] Website of MPEG Resource Share Project, Slide of “Talk on Standard Status,” May 2013.
[4] JCT-VC, “Video coding technology proposal by Samsung,” JCTVC-A124, 1st JCTVC meeting, Dresden, Apr. 2010.
[5] P. Helle, S. Oudin, B. Bross, D. Marpe, M. O. Bici, K. Ugur, J. Jung, G. Clare, and T. Wiegand, “Block Merging for Quadtree-Based Partitioning in HEVC,” IEEE Trans. Circuits Syst. Video Technol., vol. 22, no. 12, pp. 1720-1731, Dec. 2012.
[6] C. M. Fu, E. Alshina, A. Alshin, Y. W. Huang, C. Y. Chen, C. Y. Tsai, C. W. Hsu, S. M. Lei, J. H. Park, and W. J. Han, “Sample Adaptive Offset in the HEVC Standard,” IEEE Trans. Circuits Syst. Video Technol., vol. 22, no. 12, pp. 1755-1764, Dec. 2012.
[7] A. Vetro, C. Christopoulos, and H. Sun, “Video Transcoding Architectures and Techniques: An Overview,” IEEE Signal Processing Magazine, pp. 18-29, Mar. 2003.
[8] I. Ahmad, X. Wei, Y. Sun, and Y. Q. Zhang, “Video Transcoding: An Overview of Various Techniques and Research Issues,” IEEE Trans. Circuits Syst. Video Technol., vol. 7, no. 5, pp.793–804, Oct. 2005.
[9] J. Youn, M. T. Sun, and J. Xin, “Video Transcoder Architectures for Bit Rate Scaling of H.263 Bit Streams,” in Proc. ACM Multimedia, Nov. 1999, pp. 243-250.
[10] M. J. Chen, M. C. Chu, and C. W. Pan, “Efficient Motion Estimation Algorithm for Reduced Frame-Rate Video Transcoder,” IEEE Trans. Circuits Syst. Video Technol., vol. 12, pp. 269-275, Apr. 2002.
[11] J. Xin, M. T. Sun, B. S. Choi, and K.W. Chun, “An HDTV to SDTV Spatial Transcoder,” IEEE Trans. Circuits Syst. Video Technol., vol. 12, no. 11, pp. 998-1008, Nov. 2002.
[12] Y. Su, J. Xin, A. Vetro, and H. Sun, “Efficient MPEG-2 to H.264/AVC Intra-Transcoding in Transform-domain,” in Proc. IEEE Int. Symp. Circuits Syst., May 2005, pp. 1234-1237.
[13] E. Peixoto, and E. Izquierdo, ”A Complexity-Scalable Transcoder From H.264/AVC to The New HEVC Codec ,” IEEE ICIP, Sept. 2012, pp 737-740.
[14] D. Zhang, B. Li, J. Xu, and H. Li, “Fast Transcoding from H.264/AVC to High Efficiency Video Coding,” IEEE ICME, July 2012, pp 651-656.
[15] H. Shen, X.Sun, and F. Wu, “Fast H.264/MPEG-4 AVC Transcoding Using Power-Spectrum Based Rate-Distortion Optimization,” IEEE Trans. Circuits Syst. Video Technol., vol. 18, no. 6, pp. 746-755, June 2008.
[16] 曾琪騰,H.264至HEVC畫面間預測之轉換編碼研究,國立中央大學碩士論文,2012。
[17] X. L. Tang, S. K Dai, and C. H. Cai, “An Analysis of TZSearch Algorithm in JMVC,” IEEE ICGCS, June 2010, pp 516-520.
[18] X. Liu, W. Zhu, and K. Y. Yoo, “Fast Inter Mode Decision Algorithm Based on the MB Activity for MPEG-2 to H.264/AVC Transcoding,” CSE ’09. International Conference, Computational Science and Engineering, Aug. 2009, vol.2, pp.25-30.
[19] Z. Zhou, S. Sun, S. Lei, and M. Sun, “Motion Information and Coding Mode Reuse for MPEG-2 to H.264 Transcoding,” in Proc. IEEE Int. Symp. Circuits Syst., May 2005, pp. 1230-1233.
[20] R. Garrido-Cantos, J. D. Cock, J. L. Martínez, S. V. Leuven, P. Cuenca, “Motion-Based Temporal Transcoding from H.264 AVC-to-SVC in Baseline Profile,” IEEE Trans. Consumer Electronics, vol.57, no.1, pp.239-246, February 2011.
[21] Joint Video Team software JM17.2.
http://iphome.hhi.de/suehring/tml/download/
[22] HM Reference Software 9.2.
https://hevc.hhi.fraunhofer.de/svn/svn_HEVCSoftware
指導教授 張寶基 審核日期 2013-7-22
推文 facebook   plurk   twitter   funp   google   live   udn   HD   myshare   reddit   netvibes   friend   youpush   delicious   baidu   
網路書籤 Google bookmarks   del.icio.us   hemidemi   myshare   

若有論文相關問題,請聯絡國立中央大學圖書館推廣服務組 TEL:(03)422-7151轉57407,或E-mail聯絡  - 隱私權政策聲明