Affine Motion Compensated Prediction in VVC

This article will take a closer look at the Affine Motion Compensated Prediction in the VVC (Versatile Video Coding) codec and demonstrate how it works. 

MPEG developed three new video codecs in 2020-2021 – Versatile Video Coding (H.266), Essential Video Coding (EVC MPEG-5 Part 1), and Low Complexity Enhancement Video Coding (LCEVC MPEG-5 Part 2). The VVC codec is considered as a successor to H.265 (HEVC) and has several advanced inter-prediction coding tools used for frame compression.

One of them is Affine Motion Inter-Prediction. In this article we will explore the concepts of affine motion estimation and compensation in the VVC codec with examples and how to understand them using a VQ analyzer.

affine motion estimation and compensation in VVC
Pic 1. Prediction mode view with Affine prediction blocks

What is Prediction in Video Codecs?

Prediction modes are basically subdivided into two main types:

  • Intra – when pixels are predicted by other pixels of the current frame,
  • Inter – when other frames predict the current frame.

Inter Prediction technique uses optical flow, where every pixel on the frame can have a vector from the previous frame. However, signaling every vector uses a considerable amount of data, which is costly. For this reason, an image is split into blocks called prediction units (PU). Every block has only one summarized motion vector (or two in the case of Bi-prediction).

affine motion estimation and compensation
Pic 2. Classic motion prediction

Classical motion compensation works with 2D translations – 2 degrees of freedom (DOF).

It happens when you just copy one rectangular block from one place to another. However, the real world is always a bit more complicated. There is not much stuff that simply moves plainly over the screen, unless it is Super Mario, of course. Objects often rotate, scale, and combine different types of motion. Some of those movements could be presented with Affine Transformations. 

affine motion estimation and compensation
Pic.3. Affine Transformations

Therefore, the idea of Affine Prediction is to extend the classical translation (2 DOF) to more degrees of freedom. Affine transformation is a geometric transformation that preserves the lines and parallelism. VVC has two models of describing affine motion information: using two control points (4-parameter) or three control point motion vectors (6-parameter):

  • Classic prediction: 2D translation
  • Affine 4 param: + rotation, scaling
  • Affine 6 param: + aspect ratio, shearing

Let us now consider examples of Affine prediction using VQ Analyzer.

affine motion estimation and compensation
Pic 4. Prediction view of Affine 4-param bi-prediction unit
affine motion estimation and compensation
Pic 5. Prediction view of Affine 6-param prediction unit

Implementation of Affine Motion Estimation in VVC

To lower computation complexity and memory access in hardware implementations, VVC simplifies the affine model that is block-based. Instead of applying vectors for each pixel, the block is divided into 4×4 pixel luma sub-blocks. VVC signals corner motion vectors for CU. Subblock MVs are derived from block control point MVs, according to the equations below, and rounded to 1/16 fraction accuracy. Then translational motion compensation is applied for each sub-block.

affine motion estimation and compensation
Pic 6. The vector scheme of affine subblock motion vectors

For a 4-parameter affine motion model, the motion vector at sample location (x, y) in a block is derived as:

sTxkKDOs8XhAMoDom VZPyfSsVD8o2FnJMisyfxfPLrNG2O5ffjOh3w1sPH4x6zTLtq6sJFume4LDXvWa7bwt3pi0OG5rmjYSi0UJuOFq m9BzpBrUqhdjKqh1a5eETEb WSbVU

For a 6-parameter affine motion model, the motion vector at sample location (x, y) in a block is derived as:

20ewobBIJhmlnJT1NqrHhYfo0zAgjYEuCFFmvK3 gGpMqrJ Tw rnyYJpln3h6CnXv5T NH73lsboumIBynJi1uA2pWkjK3mGwXZieBXdeJS65mdknPk59fM6B7XlGEGKuNAKyE

There are two affine motion prediction modes in VVC:

  • affine merge mode,
  • and affine AMVP mode.

VQ analyzer can display sub-blocks motion vectors in Details View of Motion buffer:

affine motion estimation and compensation
affine motion estimation and compensation
Pic 7. Prediction and Motion Buffer view of Affine 4 param bi-prediction unit

There are two Affine motion prediction modes in VVC:

  • Affine merge mode
  • Affine AMVP mode

Affine Merge Prediction in VVC

In this mode, motion information of spatial neighbor blocks is used to generate CPMVs for the current CU. There could be up to five candidates. The chosen candidate index is signaled in the stream. Candidates could be:

  • Inherited (extrapolated) from neighbors 
  • Constructed from translation motion vectors
  • Zero motion vectors.

We will now provide examples of all of them. 

Inherited candidates

ncePF98Q1mRBAZJPxL65tEr xgQRJr2xBtQgTT0hvp1Bvs2Ulk3t0LK 7onhNEakEt5UIjt2aaThGZa8gPpz0sWH33d1qsM0hAChqE1KHA3Rs7rh8a 58F
Locations of inherited candidates

There could be up to 2 inherited MVs; they are obtained from neighbors left-bottom (A0->A1) and right-top (B0->B1->B2), if available.

Constructed candidates

XBe R5hnwuIyvfJtiSFUMT1wkdZk0 NijtopzD9bwANroWBvgg28nTDG5xIiMFlYCZL3wwUrqDnpRF1D Lpmr03I NylIhzYo0FGnRyD73XJ407C6E8TIlLwJ3F5qeVi3G6JDI0
Locations of CPMVs for constructed candidates

Constructed affine candidates are the combinations of neighbors’ translational motion vectors. They are produced in two steps.     

Step 1. Obtain CPMVs vectors from the available neighbors:

  • CPMV1 – one from B2->B3->A2
  • CPMV2 – one from B1->B0
  • CPMV3 – one from A1->A0
  • CPMV4 – temporary motion vector prediction, if available

Step 2. Derive combinations:

{CPMV1, CPMV2, CPMV3}, {CPMV1, CPMV2, CPMV4}, {CPMV1, CPMV3, CPMV4},

{CPMV2, CPMV3, CPMV4}, {CPMV1, CPMV2}, {CPMV1, CPMV3}

When the list is not complete after filling with inherited and constructed candidates, zero MVs are inserted at the end of the list.

You can view affine block prediction details, including the candidate list in Detail View of VQ Analyzer. Here is an Affine Merge example:

affine motion estimation and compensation
Pic 10. Detail View of Affine Merge bi-prediction unit

Affine AMVP prediction

In affine AMVP (advanced motion vector prediction) mode, the difference between vectors of current CU and their predictors is added to the bitstream:

CPMV = prediction + difference

Prediction is obtained using the candidate list; it is limited to 2 candidates.

Candidates could be:

  • Inherited (extrapolated) from neighbors 
  • Constructed from translation motion vectors
  • Translational MVs from neighboring CUs
  • Zero motion vectors.

The checking order of inherited and constructed affine AMVP candidates is the same as in the Merge mode, but it has an additional check – the candidate must have the same reference picture index. 

Constructed candidates could be {CPMV1, CPMV2} for 4-param mode and {CPMV1, CPMV2, CPMV3} for 6 param mode.

Affine AMVP details and the candidate list also could be accessed in VQ Analyzer Detail View for a selected block:

0RUW4gip6f9Ty k373KOrYBv4Itt7nKEVZ9KamQuvB 3EnQF 53LBfElRBQWnLyBFjqnUgole0TB S1hJV IXDJILbYreptaAWToPVQbCzX9drui8jbDCVZsOcVGBaqh2Cdrqn8

That is all for today. In this article, we have demonstrated the affine prediction algorithm in VVC. 

IMG 4273
Denis Fedorov

Denis Fedorov is a Software Developer at ViCueSoft. ViCueSoft provides video quality analysis and transcoding software for codec designers and developers, broadcasting, streaming service and semiconductors.

1200x200-Pallycon

Leave a Comment

Your email address will not be published. Required fields are marked *

Enjoying this article? Subscribe to OTTVerse and receive exclusive news and information from the OTT Industry.