VVC/JEM(二):MTT结构

在HEVC中,CTU通过四叉树划分为不同大小的CU。根据PU模式,CU可分割为一个/两个/四个PU,一个PU有着相同的预测过程。HEVC结构的基本概念是有着多个单元概念,CU、PU、TU。

在VVC中,嵌套二叉树/三叉树划分的四叉树结构代替了CU、PU、TU概念。

 

JVET第十次会议正式定义了VVC  Test Model 1(VTM1),最初版本的VTM1仅仅包含了binary/ternary/quanternary(二叉/三叉/四叉)编码树。

VVC/JEM(二):MTT结构_第1张图片

图1:General block diagram of VTM1 encoder

VVC/JEM(二):MTT结构_第2张图片

 

图2:The binary/ternary/quaternary-treepartitions: (a) no splitting (b) quaternary partitioning (c) horizontal binarypartitioning (d) vertical binary partitioning (e) horizontal ternarypartitioning (e) vertical ternary partitioning

VVC/JEM(二):MTT结构_第3张图片

图3:QTBTTT划分标志

 

CTU首先进行QT划分,然后进行BT/TT划分(flag1:是否划分,flag2:划分方向,flag3:BT还是TT)

划分过程由以下5个参数控制:

 

4:2:0图像

l  CTU size: the root node size of a quaternary tree(128x128)

l  MinQTSize: the minimum allowed quaternary tree leaf node size(16x16)

l  MaxBTTSize: the maximum allowed binary and ternary tree root nodesize(64x64)

l  MaxBTTDepth: the maximum allowed binary and ternary tree depth(4)

l  MinBTTSize: the minimum allowed binary and ternary tree leaf nodesize(4x4)

 

128x128的CTU首先进行四叉树划分;

四叉树节点进行二叉树划分时,则该节点是二叉/三叉树的根节点,且二叉/三叉树深度为0;

 

 

 

 

你可能感兴趣的:(VVC,(H266))