Image Processing Wavefronts for HEVC Parallelism

Unlike H.264/AVC, where parallelism was an afterthought, the current?HEVC draft contains several proposals aiming at making the codec better “parallelizable”. H.264/AVC supports slices, which were introduced mainly to prevent loss of quality in the case of transmission errors, but can also be used to parallelize the decoder. Employing slices for parallelism, however, has several problems. First and foremost, using many slices to increase parallelism incurs significant coding losses. Second, the number of slices is determined by the encoder and if the decoder relies on slices to obtain real-time performance, it may not achieve this if it receives a video sequence with only one or a few slices per frame. One of the two parallelization approaches included in the?HEVC is Wavefront Parallel Processing (WPP), WPP allows creating picture partitions that can be processed in parallel without incurring high coding losses.

In Wavefront Parallel Processing (WPP) processes rows of treeblocks in parallel while preserving all coding dependencies. Since a treeblock being processed requires the left, top-left, top, and topright treeblocks to be available in order for predictions to operate correctly, a shift of at least two treeblocks is enforced between consecutive rows of treeblocks processed in parallel. Therefore, WPP requires, compared to Tiles in the non-cross border filtering mode, additional inter-core communication. Typically inter-core communication is not a burden for today’s multi-core processor architectures and WPP is therefore suited for software and hardware implementations. Especially, implementations of WPP are straight forward, since WPP does not affect the ability to perform single step processing, i.e. entropy coding, predictive coding as well as in-loop filtering can be applied in a single processing step. An example use case for WPP may be high-quality streaming over robust channels. In combination with Dependent Slices this tool can be also used in ultra-low delay applications.

Fig: In OWF, Frames can be overlapped with a restricted motion vector size, if the reference area is fully available.

Overlapped Wavefront (OWF) allows for overlapping the execution of consecutive pictures using Wavefronts. When a thread has finished a treeblock row in the current picture and no more rows are available it can start processing the next picture instead of waiting for the current picture to finish.

Related Publications

Chi Ching Chi, Mauricio Alvarez-Mesa, Ben Juurlink, Gordon Clare, Félix Henry, Stéphane Pateux and Thomas Schierl:
Parallel Scalability and Efficiency of HEVC Parallelization Approaches,
IEEE Transactions on Circuits and Systems for Video Technology, IEEE TCSVT, Special Issue on Emerging Research and Standards in Next Generation Video Coding,?to appear 2012.

Chi Ching Chi, Mauricio Alvarez Mesa, Ben Juurlink, Valeri George, and Thomas Schierl:
Improving the Parallelization Efficiency of HEVC Decoding,
Proceedings of IEEE International Conference on Image Processing (ICIP 2012), Orlando, FL, USA,?September 2012, accepted.

Mauricio Alvarez-Mesa, Chi Ching Chi, Ben Juurlink, Valeri George, and Thomas Schierl:
Parallel Video Decoding In The Emerging HEVC Standard,
Proceedings of International Conference on Acoustics, Speech, and Signal Processing (ICASSP 2012), Kyoto, Japan,?March 2012.

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/447431.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/447431.shtml
英文地址,請注明出處:http://en.pswp.cn/news/447431.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

Hive 刪除整個數據庫,包括其中的所有表

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 drop DATABASE IF EXISTS 數據庫名 CASCADE; 使用CASCADE ,表示強制刪除。

Windows 9信息曝光:統一開發接口、整合Cortana到任務欄

摘要:2014年微軟全球合作伙伴大會在美國華盛頓正式拉開序幕,會上,微軟首席運營商Kevin Turner透露了微軟下一代操作系統Windows 9的一些信息:統一開發接口、語音助手Cortana將被整合到任務欄、桌面小工具回歸等。 北京時間7月15日…

解決: Error while compiling statement: FAILED: ParseException line 23:13 extraneous input ‘(‘ expectin

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 1. hive 執行sql,報錯: Error while compiling statement: FAILED: ParseException line 23:13 extraneous inp…

程序員可以只關心技術么?

摘要:不少程序員愛維護喜歡的技術,雖然他們說的有道理,但程序員價值的實現并不取決于技術。模式不一樣,程序員價值也不一樣,而這也暗含了程序員生涯的兩個進階模式,讀完此文,相信你會重新思考個…

Intellij IDEA中分屏顯示方法

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 今天才發現IDEA中還有split view的功能,上網查的時候查到了很多莫名其妙的東西。 實際上對想分屏顯示的文件 右鍵->Spli…

IDR、CRA、BLA、RASL、RADL、closed-gop、open-gop

相對于H.264編碼的每個GOP是相互獨立的,GOP切換用I幀,幀間搜索不再參考前一個GOP。而HEVC切換則可以“軟切換”。 BLA、CRA、IDR是文獻中提到過的三種隨機接入點(RAP),在文獻中的解釋的確不是很容易理解。 (1)關于GOP…

ROW_NUMBER() OVER() 函數用法詳解 (分組排序,多例子)

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 語法格式:row_number() over(partition by 分組列 order by 排序列 desc) row_number() over()分組排序功能: …

解決:您需要來自xxx的權限才能對此文件夾進行更改(電腦系統取得管理員權限)

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 1.莫名的一個項目工程代碼就打不開了。提示信息為: 2. 刪除也不行,更新也不行,火大,我惹…

程序員父親的遺產——編程十誡

我的父親在和我徹談編程兩個星期之后就去世了。 那個時候我22歲,一個剛剛完成美學學士畢業設計的大四學生。而我的父親62歲,比大多數我同齡人的父親都要老。早在60年代,他就已經在田納西理工大學開始編程了,那個時候他在穿孔卡片…

解決:Can not deserialize instance of com.xxx.xx.XXModel out of START_ARRAY toke

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 1. json數據解析報錯: Can not deserialize instance of com.xxx.xxx.model.XXXModel out of START_ARRAY token 2. 需要一…

HEVC標準概覽

HEVC標準概覽HEVC(高效視頻編碼標準)是ITU-T VCEG(國際電聯電信標準化部視頻編碼組)與ISO/IEC MPEG(國際標準化組織國際電工委員會視頻標準化組)的合作組織JCT-VC最新項目。ITU-T和ISO/IEC計劃在2013年1月共…

解決:Unable to identify index name. XXXModel is not a Document. Make sure the document class is annota

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 1. 往 elasticsearch 寫入數據調用 index 方法,執行報錯: Unable to identify index name. XXXModel is not a …

為什么年事已高的我還在編程?

每一個行業的從業人員都會有變老的那一刻,難道變老了之后還要繼續從事之前的工作嗎?估計沒人愿意,除非是體力上吃得消的。接下來所講述的就是作為程序員的碼農們該如何迎接慢慢變老之后的工作轉變!人們都會期望隨著歲數的增加&…

解決:redis.clients.jedis.exceptions.JedisDataExceptionERR This instance has cluster support disabled

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 1. springCloud 項目啟動工程,redis 集群連接報錯: Caused by: redis.clients.jedis.exceptions.JedisDataExcep…

小兩口攢錢不吵嘴 用理財加固你的愛情

【導讀】終于和你的他生活在一起了,幸福嗎?爭吵嗎?困惑嗎?據統計,夫妻間的矛盾大多跟錢有關,怎么花錢、怎么攢錢往往是兩個人不能統一的原因。鑒于此,她理財總結了幾條財蜜關于夫妻怎么攢錢理財…

解決: Intellij IDEA 運行報錯 Command line is too long

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 1. idea啟動工程報錯: 2. 網上找到2個方法。方法一我試了有效果。方法二我同事試了有效果。 方法一: 修改項目…

年薪50萬碼農轉行賣涼皮,互聯網思維又一次顛覆?

摘要:今年五月份,一位年薪50萬元的碼農哥放棄了碼農的工作,轉身跳到了苦臟累的餐飲行業,每天騎著筋斗云電動車在中關村送外賣的事跡在互聯網上引起了轟動。近日,碼農哥接受了CSDN的采訪,讓我們一窺其轉行背…

hue 查詢 hbase 操作相關參考

前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。 界面操作說明 進入hue中的hbase 進入表的查詢界面 界面說明 查詢語句 ,表示結束查詢,可以不加 主鍵查詢 輸入主鍵 rowke…

不要做一個浮躁的程序員

1.不要看到別人的回復第一句話就說:給個代碼吧!你應該想想為什么。當你自己想出來再參考別人的提示,你就知道自己和別人思路的差異。   2.初學者請不要看太多太多的書那會誤人子弟的,先找本系統的學,很多人用了很久…

解決:elasticsearch 更新報錯:The number of object passed must be even but was [1]

前些天發現了一個巨牛的人工智能學習網站&#xff0c;通俗易懂&#xff0c;風趣幽默&#xff0c;忍不住分享一下給大家。點擊跳轉到教程。 1. 錯誤的代碼寫法&#xff1a; Autowiredprivate ElasticsearchOperations esOperations; public void updateAxxxData(List<AxxxMo…