Intra: Difference between revisions

From XiphWiki
Jump to navigation Jump to search
(Created page with "In general, intra-frame predictors are coefficients that are used to predict the contents of a block based on its three neighboring blocks. Consider a 4x4 block structure: <mat...")
 
m (→‎L^2-norm: now subtracting the correct mean)
Line 32: Line 32:
<math>
<math>
X=\begin{pmatrix}
X=\begin{pmatrix}
  x_{1,1}-\bar{x_1} & x_{1,2}-\bar{x_1} & \cdots & x_{1,m}-\bar{x_1}\\
  x_{1,1}-\bar{x_1} & x_{1,2}-\bar{x_2} & \cdots & x_{1,m}-\bar{x_m}\\
  x_{2,1}-\bar{x_2} & x_{2,2}-\bar{x_2} & \cdots & x_{2,m}-\bar{x_2}\\
  x_{2,1}-\bar{x_1} & x_{2,2}-\bar{x_2} & \cdots & x_{2,m}-\bar{x_m}\\
  \vdots  & \vdots  & \ddots & \vdots \\
  \vdots  & \vdots  & \ddots & \vdots \\
  x_{n,1}-\bar{x_n} & x_{n,2}-\bar{x_n} & \cdots & x_{n,m}-\bar{x_n}
  x_{n,1}-\bar{x_1} & x_{n,2}-\bar{x_2} & \cdots & x_{n,m}-\bar{x_m}
\end{pmatrix}
\end{pmatrix}
</math>
</math>
Line 41: Line 41:
<math>
<math>
Y=\begin{pmatrix}
Y=\begin{pmatrix}
  y_{1,1}-\bar y_1 & y_{1,2}-\bar y_1 & \cdots & y_{1,l}-\bar y_1\\
  y_{1,1}-\bar{y_1} & y_{1,2}-\bar{y_2} & \cdots & y_{1,l}-\bar{y_l}\\
  y_{2,1}-\bar y_2 & y_{2,2}-\bar y_2 & \cdots & y_{2,l}-\bar y_2\\
  y_{2,1}-\bar{y_1} & y_{2,2}-\bar{y_2} & \cdots & y_{2,l}-\bar{y_l}\\
  \vdots  & \vdots  & \ddots & \vdots \\
  \vdots  & \vdots  & \ddots & \vdots \\
  y_{n,1}-\bar y_n & y_{n,2}-\bar y_n & \cdots & y_{n,l}-\bar y_n
  y_{n,1}-\bar{y_1} & y_{n,2}-\bar{y_2} & \cdots & y_{n,l}-\bar{y_l}
\end{pmatrix}
\end{pmatrix}
</math>
</math>


In the case of 4x4 blocks, <math>m=48</math> and <math>l=16</math>.  Let <math>C=X^T X</math> and <math>D=X^T Y</math>.  Then <math>\beta=C^{-1} D</math>.
In the case of 4x4 blocks, <math>m=48</math> and <math>l=16</math>.  Let <math>C=X^T X</math> and <math>D=X^T Y</math>.  Then <math>\beta=C^{-1} D</math>.

Revision as of 19:15, 26 June 2012

In general, intra-frame predictors are coefficients that are used to predict the contents of a block based on its three neighboring blocks. Consider a 4x4 block structure:

Assuming a linear predictor, we would like to find the 768 coefficients that best predict from the neighboring . That is, for a given block with coefficients and , we would like a 48x16 matrix such that the residual is minimized (for some -norm). Because it is this residual that is quantized and coded in the bitstream, we would prefer that most of its coefficients are zero. This will be discussed further when comparing the different -norms.

Block Modes

These predictors often follow certain geometry in the time-domain image space. Imagine a vertical edge that runs through . A natural predictor might be to simply copy the values down into each row of the 4x4 block . In order to account for the different possible geometries, each block is assigned a mode which indicates what set of prediction coefficients to use (the ). When encoding a block , the encoder chooses a mode, computes and writes both the block mode and the residual .

Because the decoder must know the coefficients for each of the block modes, there is a tradeoff between how well we can predict the values in (number of block modes) with decoder complexity. Our hypothesis is that the optimal number of block modes will correspond to how closely we can fit different geometries inside the block. For 4x4 blocks, this might correspond to a mode for each of the 8 cardinal directions (ask Jason to clarify) with larger blocks potentially supporting a larger number of directions. In addition, we would like to support the DC and True Motion modes from Theora/VP3 and WebM/VP8 as they are often the best fit. For common video sequences, In the case of True Motion, anywhere from 20% to 45% of the intra frames use this mode are

This is slightly complicated by the fact that our coefficients are not in the time-domain, but are the result of a lapped transform, see TDLT. In practice all of these modes have an equivalent in the frequency domain (even True Motion?). As a starting point, we are using the 10 modes from Theora to classify the blocks from a set of sample images. Each category of blocks will be used to construct a set of predictors which is then used to reclassify the blocks based on Sum of Absolute Transform Differences (SADT). Tim suggested weighting each blocks contribution based on SADT_bestfit-SADT_nearest.

-norm

Suppose for some mode we have blocks. We can then construct the matrices and where the ith row of each contains the zero-mean values from the ith block.

In the case of 4x4 blocks, and . Let and . Then .