One aspect of the present invention relates to a video decoding device and a video encoding device.
A video encoding device which generates coded data by coding a video, and a video decoding device which generates decoded images by decoding the coded data are used to transmit or record a video efficiently.
For example, specific video coding schemes include schemes suggested in H.264/AVC and High-Efficiency Video Coding (HEVC).
In such a video coding scheme, images (pictures) constituting a video are managed by a hierarchy structure including slices obtained by splitting images, Coding Tree Units (CTUs) obtained by splitting the slices, coding units (CUs) obtained by splitting the coding tree units, Prediction Units (PUs) which are blocks obtained by splitting the coding units, and Transform Units (TUs), and are coded/decoded for each CU.
In such a video coding scheme, usually, a prediction image is generated based on local decoded images obtained by coding/decoding input images, and prediction residual (also sometimes referred to as “difference images” or “residual images”) obtained by subtracting the prediction images from input images (original images) are coded. Generation methods of prediction images include an inter-picture prediction (an inter prediction) and an intra-picture prediction (intra prediction) (NPL 1).
In recent years, along with the advancement in processors, such as a multi-core CPU and a GPU, configurations and algorithms that facilitate performance of parallel processes have been adopted for a video coding and decoding process. As an example of a configuration facilitating parallelization, a screen (picture) split unit, called a Tile, has been introduced. Unlike a slice, a tile is obtained by splitting a picture into rectangular regions, and a tile is decoded without referring to information (a prediction mode, an MV, a pixel value) outside of the tile within one picture. Consequently, the tile can be independently decoded within one picture (NPL 2). Incidentally, in a case that another decoded picture (reference picture) is referred to by means of inter prediction also in a case of using the tiles, information (a prediction mode, an MV, a pixel value) that a target tile refers to on the reference picture is not necessarily information of a region at the same position as the target tile on the reference picture. Therefore, even in a case that only a part of a region (tile, or a limited number of tiles) of a video is regenerated, the entire video needs to be regenerated.
In addition, in recent years, resolution for a video has been enhanced, as typified by 4K, 8K, VR, and a video that captures 360-degree omnidirectional images, such as a 360-degree video. To watch such images/videos on a smartphone and a Head Mount Display (HMD), a part of the high-resolution image is clipped and displayed on a display. Since capacity of a battery for a smartphone and an HMD is not large, there is anticipation for a system that extracts a partial region necessary for display so as to enable watching of an image through a minimum necessary decoding process.
As described above, a tile is obtained by splitting a picture into rectangular regions, and a tile can be decoded without referring to information (a prediction mode, an MV, a pixel value) outside of the tile within one picture. Specifically, the tile can be independently decoded within one picture. However, to decode a partial region (tile, or a limited number of tiles) of a video as a sequence, the entire video needs to be regenerated. To enable an independent process for each tile in a time direction as well as in a spatial direction, it is only necessary that an encoder abandon the use of a tool that may use information of a neighboring tile of a target tile and a collocated tile. In this case, however, information related to the tool needs to be transmitted uselessly, and this significantly reduces coding efficiency. Furthermore, a process without the use of information of a neighboring tile of a target tile is also required, but this reduces coding efficiency.
The present invention is made in view of the problems described above, and has an object to provide a system that prevents decrease in coding efficiency, and secures independent decoding of each tile in a spatial direction and a time direction.
An image decoding device or a video encoding device according to one aspect of the present invention is a video encoding device or a video decoding device for performing a spatial-temporal prediction process by deriving a motion vector of a target block, based on a spatial neighboring block or a temporal neighboring block, the image decoding device or the video encoding device including: a unit configured to determine whether or not a reference pixel is present within a tile sequence on a reference picture, the reference pixel being referred to in a case of deriving a motion compensation image by using a motion vector of the target block; and a unit configured to derive a pixel value of the motion compensation image, based on a pixel value within the tile sequence, in a case that the reference pixel is not present within the tile sequence, wherein a position of the temporal neighboring block is a block including any one of lower right coordinates within a collocated block, lower left coordinates of a right neighboring block of the collocated block, and upper right coordinates of a lower neighboring block of the collocated block.
According to one aspect of the present invention, a system of securing independence of decoding of each tile is introduced in each individual tool, and therefore decrease in coding efficiency can be prevented, and each tile can be independently decoded in a video. As a result, decoding can be performed in a selected region necessary for display or the like, and therefore a processing amount can be reduced in a great degree.
Hereinafter, embodiments of the present invention are described with reference to the drawings.
The image transmission system 1 is a system configured to transmit codes of a coding target image having been coded, decode the transmitted codes, and display an image. The image transmission system 1 includes an image encoding device (video encoding device) 11, a network 21, an image decoding device (video decoding device) 31, and an image display device (video display device) 41.
An image T indicating an image of a single layer or multiple layers is input to the image encoding device 11. A layer is a concept used to distinguish multiple pictures in a case that there are one or more pictures to configure a certain time. For example, coding an identical picture in multiple layers having different image qualities and resolutions is scalable coding, and coding pictures having different viewpoints in multiple layers is view scalable coding. In a case of performing a prediction (an inter-layer prediction, an inter-view prediction) between pictures in multiple layers, coding efficiency greatly improves. In a case of not performing a prediction, in a case of (simulcast), coded data can be compiled.
The network 21 transmits a coding stream Te generated by the image encoding device 11 to the image decoding device 31. The network 21 is the Internet (internet), Wide Area Network (WAN), Local Area Network (LAN), or combinations thereof. The network 21 is not necessarily a bidirectional communication network, but may be a unidirectional communication network configured to transmit broadcast wave such as digital terrestrial television broadcasting and satellite broadcasting. The network 21 may be substituted by a storage medium that records the coding stream Te, such as Digital Versatile Disc (DVD) and Blue-ray Disc (BD).
The image decoding device 31 decodes each of the coding streams Te transmitted by the network 21, and generates one or multiple decoded images Td.
The image display device 41 displays all or part of one or multiple decoded images Td generated by the image decoding device 31. For example, the image display device 41 includes a display device such as a liquid crystal display and an organic Electro-luminescence (EL) display. Examples of a display type include stationary, mobile, HMD, and the like. In spacial scalable coding and SNR scalable coding, in a case that the image decoding device 31 and the image display device 41 have high processing capability, an enhanced layer image having high image quality is displayed, and in a case of having lower processing capability, a base layer image which does not require as high processing capability and display capability as an enhanced layer is displayed.
Operator
Operators used herein will be described below.
An operator “>>” is a right bit shift operator, “<<” is a left bit shift operator, “&” is a bitwise AND operator, “|” is a bitwise OR operator, and “|=” is an OR assignment operator.
X ? An operator “x?y:z” is a ternary operator representing that y is obtained in case that x is true (that is, other than “0”) or z is obtained in a case that x is false (that is, “0”).
Clip3 (a, b, c) is a function to clip c in a value equal to or greater than a and equal to or less than b, and a function to return a in a case that c is less than a (c<a), return b in a case that c is greater than b (c>b), and return c otherwise (however, a is equal to or less than b (a<=b)).
“abs(a)” is a function that returns an absolute value of a.
“Int(a)” is a function that returns an integer value of a.
“floor(a)” is a function that returns a maximum integer that is smaller or equal to a.
“a/d” represents a division of a by d (decimal places are rounded down).
Structure of Coding Stream Te
Prior to the detailed description of the image encoding device 11 and the image decoding device 31 according to the present embodiment, the data structure of the coding stream Te generated by the image encoding device 11 and decoded by the image decoding device 31 will be described.
Coding Video Sequence
In the coding video sequence, a set of data referred to by the image decoding device 31 to decode the sequence SEQ of a processing target is prescribed. As illustrated in (a) of
In the video parameter set VPS, for a video including multiple layers, a set of coding parameters common to multiple videos and a set of coding parameters associated with multiple layers and an individual layer included in a video are prescribed.
In the sequence parameter set SPS, a set of coding parameters referred to by the image decoding device 31 to decode a target sequence is prescribed. For example, width and height of a picture are prescribed. Note that multiple SPSs may exist. In that case, any of multiple SPSs is selected from the PPS.
In the picture parameter set PPS, a set of coding parameters referred to by the image decoding device 31 to decode each picture in a target sequence is prescribed. For example, a reference value (pic_init_qp_minus26) of a quantization step size used for decoding of a picture and a flag (weighted_pred_flag) indicating an application of a weighted prediction are included. Note that multiple PPSs may exist. In that case, any of multiple PPSs is selected from each slice header in a target sequence.
Coding Picture
In the coding picture, a set of data referred to by the image decoding device 31 to decode the picture PICT of a processing target is prescribed. As illustrated in (b) of
Note that in a case not necessary to distinguish the slices S0 to SNS-1 below, subscripts of reference signs may be omitted and described. The same applies to other data included in the coding stream Te described below and described with an added subscript.
Coding Slice
In the coding slice, a set of data referred to by the image decoding device 31 to decode the slice S of a processing target is prescribed. As illustrated in (c) of
The slice header SH includes a coding parameter group referred to by the image decoding device 31 to determine a decoding method of a target slice. Slice type specification information (slice_type) to specify a slice type is one example of a coding parameter included in the slice header SH.
Examples of slice types that can be specified by the slice type specification information include (1) I slice using only an intra prediction in coding, (2) P slice using a unidirectional prediction or an intra prediction in coding, (3) B slice using a unidirectional prediction, a bidirectional prediction, or an intra prediction in coding, and the like. Note that an inter prediction is not limited to a uni-prediction or a bi-prediction, and a greater number of reference pictures may be used to generate a prediction image. Hereinafter, in a case that a slice is referred to as a P or B slice, the slice refers to a slice that includes a block that may employ an inter prediction.
Note that, the slice header SH may include a reference (pic_parameter_set_id) to the picture parameter set PPS included in the coding video sequence.
Coding Slice Data
In the coding slice data, a set of data referred to by the image decoding device 31 to decode the slice data SDATA of a processing target is prescribed. As illustrated in (d) of
Coding Tree Unit
In (e) of
The CT includes, as CT information, a QT split flag (cu_split_flag) indicating whether or not to perform the QT split and a BT split mode (split_bt_mode) indicating a split method of the BT split. cu_split_flag and/or split_bt_mode are transmitted for each coding node CN. In a case that cu_split_flag is 1, the coding node CN is split into four coding nodes CN. In a case that cu_split_flag is 0, in a case that split_bt_mode is 1, the coding node CN is horizontally split into two coding nodes CN, in a case that split_bt_mode is 2, the coding node CN is vertically split into two coding nodes CN, and in a case that split_bt_mode is 0, the coding node CN is not split and has one coding unit CU as a node. The coding unit CU is an end node (leaf node) of the coding nodes, and is not split anymore.
In a case that a size of the coding tree unit CTU is 64×64 pixels, a size of the coding unit can be any of 64×64 pixels, 64×32 pixels, 32×64 pixels, 32×32 pixels, 64×16 pixels, 16×64 pixels, 32×16 pixels, 16×32 pixels, 16×16 pixels, 64×8 pixels, 8×64 pixels, 32×8 pixels, 8×32 pixels, 16×8 pixels, 8×16 pixels, and 8×8 pixels, 64×4 pixels, 4×64 pixels, 32×4 pixels, 4×32 pixels, 16×4 pixels, 4×16 pixels, 8×4 pixels, 4×8 pixels, and 4×4 pixels.
Coding Unit
In (f) of
Note that the data structure of the coding stream Te may have a configuration illustrated in
Also, the data structure of the coding stream Te may have a configuration in in
In the prediction tree, prediction parameters (a reference picture index, a motion vector, and the like) of each prediction unit (PU) are prescribed, the prediction unit being obtained by splitting the coding unit into one or multiple pieces. In another expression, the prediction unit is one or multiple non-overlapping regions constituting the coding unit. The prediction tree includes one or multiple prediction units obtained by the above-mentioned split. Note that, in the following, a unit of prediction where the prediction unit is further split is referred to as a “sub-block”. The sub-block includes multiple pixels. In a case that the sizes of the prediction unit and the sub-block are the same, there is one sub-block in the prediction unit. In a case that the prediction unit is larger than the size of the sub-block, the prediction unit is split into sub-blocks. For example, in a case that the prediction unit is 8×8, and the sub-block is 4×4, the prediction unit is split into four sub-blocks formed by horizontal split into two and vertical split into two.
The prediction processing may be performed for each of these prediction units (sub-blocks).
Types of prediction for the prediction tree are roughly classified into two for a case of the intra prediction and a case of the inter prediction. The intra prediction is a prediction in an identical picture, and the inter prediction refers to a prediction processing performed between mutually different pictures (for example, between display times, and between layer images).
In a case of an intra prediction, the split method has 2N×2N (the same size as the coding unit) and N×N.
In a case of an inter prediction, the split method includes coding by a PU split mode (part_mode) of the coded data, and includes 2N×2N (the same size as the coding unit), 2N×N, 2N×nU, 2N×nD, N×2N, nL×2N, nR×2N<N×N, and the like. Expressions of 2N×N and N×2N represent a 1:1 symmetric partition, and expressions of 2N×nU and 2N×nD, and nL×2N and nR×2N represent a 1:3 asymmetric partition and a 3:1 asymmetric partition, respectively. The PUs included in the CU are expressed as PU0, PU1, PU2, and PU3 sequentially.
(a) to (h) of
In the transform tree, the coding unit is split into one or multiple transform units, and a position and size of each transform unit are prescribed. In another expression, the transform unit is one or multiple non-overlapping regions constituting the coding unit. The transform tree includes one or multiple transform units obtained by the above-mentioned split.
Splits in the transform tree include those to allocate a region that is the same size as the coding unit as a transform unit, and those by recursive quad tree splits similar to the above-mentioned split of CUs.
A transform processing is performed for each of these transform units.
Prediction Parameter
A prediction image of Prediction Units (PUs) is derived by prediction parameters attached to the PUs. The prediction parameter includes a prediction parameter of an intra prediction or a prediction parameter of an inter prediction. The prediction parameter of an inter prediction (inter prediction parameters) will be described below. The inter prediction parameter is constituted by prediction list utilization flags predFlagL0 and predFlagL1, reference picture indexes refIdxL0 and refIdxL1, and motion vectors mvL0 and myL1. The prediction list utilization flags predFlagL0 and predFlagL1 are flags to indicate whether or not reference picture lists referred to as L0 list and L1 list respectively are used, and a corresponding reference picture list is used in a case that the value is 1. Note that, in a case that the present specification mentions “a flag indicating whether or not XX”, a flag being other than 0 (for example, 1) assumes a case of XX, and a flag being 0 assumes a case of not XX, and 1 is treated as true and 0 is treated as false in a logical negation, a logical product, and the like (hereinafter, the same is applied). However, other values can be used for true values and false values in real devices and methods.
Examples of an syntax element for deriving the inter prediction parameter included in the coded data include a PU split mode part_mode, a merge flag merge_flag, a merge index merge_idx, an inter prediction indicator inter_pred_idc, a reference picture index ref_idx_1X (refIdxLX), a prediction vector index mvp_1X_idx, and a difference vector mvdLX, for example.
Reference Picture List
A reference picture list is a list constituted by reference pictures stored in a reference picture memory 306.
Merge Prediction and AMVP Prediction
Decoding (coding) methods of prediction parameters include a merge prediction (merge) mode and an Adaptive Motion Vector Prediction (AMVP) mode, and merge flag merge_flag is a flag to identify these. The merge mode is a mode in which a prediction list utilization flag predFlagLX (or inter prediction indicator inter_pred_idc), a reference picture index refIdxLX, and a motion vector mvLX are not included in the coded data, but is derived from prediction parameters for a neighboring PU already processed. The AMVP mode is a mode in which the inter prediction indicator inter_pred_idc, the reference picture index refIdxLX, and the motion vector mvLX are included in the coded data. Note that the motion vector mvLX is coded as a prediction vector index mvp_1X_idx identifying the prediction vector mvpLX and as a difference vector mvdLX.
The inter prediction indicator inter_pred_idc is a value indicating types and the number of reference pictures, and takes any value of PRED_L0, PRED_L1, and PRED_BI. PRED_L0 and PRED_L1 indicate to use reference pictures managed in the reference picture list of the L0 list and the L1 list respectively, and indicate to use one reference picture (uni-prediction). PRED_BI indicates to use two reference pictures (bi-prediction BiPred), and use reference pictures managed in the L0 list and the L1 list. The prediction vector index mvp_1X_idx is an index indicating a prediction vector, and the reference picture index refIdxLX is an index indicating reference pictures managed in a reference picture list.
The merge index merge_idx is an index to indicate which prediction parameter to use as a prediction parameter of a decoding target PU among prediction parameter candidates (merge candidates) derived from PUs for which the processing is completed.
Motion Vector
The motion vector mvLX indicates a displacement (shift) between the blocks on two different pictures. A prediction vector and a difference vector related to the motion vector mvLX is referred to as a prediction vector mvpLX and a difference vector mvdLX respectively.
Inter Prediction indicator inter_pred_idc and Prediction List Utilization Flag predFlagLX
A relationship between an inter prediction indicator inter_pred_idc and prediction list utilization flags predFlagL0 and predFlagL1 are as follows, and those can be converted mutually.
inter_pred_idc=(predFlagL1<<1)+predFlagL0
predFlagL0=inter_pred_idc&1
predFlagL1=inter_pred_idc>>1
Note that an inter prediction parameter may use a prediction list utilization flag or may use an inter prediction indicator. A determination using a prediction list utilization flag may be replaced with a determination using an inter prediction indicator. On the contrary, a determination using an inter prediction indicator may be replaced with a determination using a prediction list utilization flag.
Determination of Bi-Prediction biPred
A flag biPred of whether or not a bi-prediction BiPred can be derived from whether or not two prediction list utilization flags are both 1. For example, the flag can be derived by the following expression.
biPred=(predFlagL0==1&&predFlagL1==1)
The flag biPred can be also derived from whether an inter prediction indicator is a value indicating to use two prediction lists (reference pictures). For example, the flag can be derived by the following expression.
biPred=(inter_pred_idc==PRED_BI)?1:0
The above expression can be also expressed by the following expression.
biPred=(inter_pred_idc==PRED_BI)
Note that, for example, PRED_BI can use the value of 3.
Intra Prediction
Next, an intra prediction parameter will be described.
The intra prediction parameter is a parameter used for processing to predict a CU with information in a picture, for example, an intra prediction mode IntraPredMode, and a luminance intra prediction mode IntraPredModeY and a chrominance intra prediction mode IntraPredModeC may be different from each other. There are 67 types of intra prediction modes, for example, and are composed of planar prediction, DC prediction, Angular (direction) prediction. For the chrominance prediction mode IntraPredModeC, any of a planar prediction, a DC prediction, an Angular prediction, a direct mode (mode in which a prediction mode for luminance is used), and LM prediction (a mode for performing linear prediction, based on the luminance pixel) is used.
The luminance intra prediction mode IntraPredModeY is derived using a Most Probable Mode (MPM) candidate list including intra prediction modes estimated to have a high probability of being applied to a target block in one case, and is derived from REM that is a prediction mode not included in the MPM candidate list in the other case. Which method is to be used is signaled with a flag prev_intra_luma_pred_flag, and in the former case, the MPM candidate list derived from an index mpm_idx and an intra prediction mode of a neighboring block is used to derive IntraPredModeY. In the latter case, a flag rem_selected_mode_flag, and modes rem_selected_mode and rem_non_selected_mode are used to derive the intra prediction mode.
The chrominance intra prediction mode IntraPredModeC is derived using a flag not_lm_chroma_flag indicating whether or not to use the LM prediction in a case, is derived using a flag not_dm_chroma_flag indicating whether or not to use the direct mode in a case, or is derived using an index chroma_intra_mode_idx directly specifying the intra prediction mode applied to a chrominance pixel in a case.
Loop Filter
A loop filter is a filter provided in a coding loop to remove a block distortion and a ringing distortion and improve an image quality. The loop filter mainly includes a deblocking filter, a Sample Adaptive Offset (SAO), and an Adaptive Loop Filter (ALF).
In a case that a difference in pre-deblock pixel values of pixels of the luminance component neighboring each other through the block boundary is less than a predetermined threshold value, the deblocking filter performs deblocking on the pixels of the luminance and the chrominance component with respect to the block boundary to smooth the image in the vicinity of the block boundary.
The SAO is a filter that is applied after the deblocking filtering, and has the effect of removing a ringing distortion and a quantization distortion. The SAO, which is a process in units of CTU, is a filter that classifies pixel values into several categories to add or subtract offsets in units of pixel for each category. Edge offset (EO) processing of the SAO determines an offset value that is added to the pixel value in accordance with a size relationship between the target pixel and the neighboring pixel (reference pixel).
The ALF subjects a ALF-unperformed decoded image to an adaptive filtering process using an ALF parameter (filter coefficient) ALFP that is decoded from the coding stream Te to generate a ALF-performed decoded image.
The filter coefficient is signaled immediately after the slice header and stored in a memory. In a slice or picture for which the subsequent inter prediction is used, other than signaling the filter coefficients themselves, filter coefficients that have been signaled in the past and stored in the memory are indicated by indexes without signaling the filter coefficients themselves to reduce a bit amount required to code the filter coefficients. However, in order to independently decode each tile described later, the ALF may signal and store the filter coefficients in units of tile and use the filter coefficients indicated by the indexes to subject subsequent tiles having the same TileId to the adaptive filtering process.
Entropy Coding
Entropy coding includes a method of variable-length coding a syntax using a context (probability model) that is adaptively selected depending on the type of syntax or the surrounding situation, and a method of variable-length coding a syntax using a predetermined table or calculation formula. In the former Context Adaptive Binary Arithmetic Coding (CABAC), the probability model updated for each coded or decoding picture is stored in the memory. Then, in the P picture or B picture for which the subsequent inter prediction is used, as an initial state of the context of the target picture, a probability model of the picture using the same slice type and the same slice level quantization parameter is selected among the probability models stored in the memory and is used for coding and decoding processes. To independently decode each tile, the probability model is stored in the memory in units of tile. Then, as the initial state of the context in a subsequent tile having the same TileId, the probability model of the already decoded tile used for coding or decoding the same slice type and the same slice level quantization parameters may be selected.
Tile
The tile information includes, for example, num_tile_columns_minus1, num_tile_rows_minus1, uniform_spacing_flag, column_width_minus1[i], and row_height_minus1[i], as illustrated in
wT=wPict/(num_tile_columns_minus1+1)
hT=hPict/(num_tile_rows_minus1+1)
In a case that the value of uniform_spacing_flag is 0, the widths of the respective tiles in the picture may not be configured to be identical and the height of those tiles may not be configured to be identical, and the width column_width_minus1[i] (wT in
Tile Boundary Restriction
Since the tile information is signaled with the PPS, the tile position and size can be changed for each picture. On the other hand, in a case that the tile sequence is independently decoded, that is, the tiles having the same TileId can be decoded without referring to information of a tile having different TileId, the tile position and size may not be changed for each picture. That is, in a case that each tile refers to a picture (reference picture) of a different time, the identical tile splitting may be applied in all the pictures in the CVS. In this case, the tiles having the same TileID are configured to have the same upper left coordinates, the same width, and the same height throughout all the pictures in the CVS.
Signaled is that the tile information does not change throughout the CVS, by setting a value of tiles_fixed_structure_flag in vui_parameters( ) illustrated in
(Constraint 1) In the CVS, the tile does not refer to the information of the tile having different TileId.
(Constraint 2) The numbers of tiles signaled with the PPS in the horizontal and vertical directions in the picture, the widths of the tiles, and the heights of the tiles are identical throughout the CVS. The tiles having the same TileId are not changed in the tile position on the picture (the upper left coordinates, width, and height of the tile) in the CVS even in a picture at a different time (POC). The value of tiles_fixed_structure_flag in vui_parameters( ) is set to 1.
The above (Constraint 1) “the tile does not refer to the information of the tile having different TileId” is described in detail.
In
In
In the case that the value of independent_tile_flag is 0, it is meant that the tile sequence may not necessarily be able to be decoded independently.
Configuration of Image Decoding Device
The header information decoder 2001 decodes the coding stream Te input from the outside and coded in units of network abstraction layer (NAL). The header information decoder 2001 derives the tile (TileId) required for display from control information indicating an image area to be displayed on the display or the like input from the outside. The header information decoder 2001 extracts the coding tiles required for display from the coding stream Te and transmits the extracted coding tiles to the tile decoders 2002a to 2002n. Furthermore, the header information decoder 2001 transmits the tile information obtained by decoding the PPS (information regarding tile split) and the TileId of the tile to be decoded to tile synthesis unit 2003.
The tile decoders 2002a to 2002n decode the respective coded tiles and transmit the decoded tiles to the tile synthesis unit 2003.
Here, each of the tile decoders 2002a to 2002n performs the decoding process on the tile sequence treating as one independent video sequence, and thus, does not temporally or spatially refer to the prediction information between the tile sequences in a case of performing the decoding process. That is, each of the tile decoders 2002a to 2002n, in decoding a tile in a picture, does not refer to tiles of other tile sequences (having different TileId).
Since the tile decoders 2002a to 2002n individually decode the tiles, it is possible to perform the decoding process on multiple tiles in parallel as well as independently decode only one tile. As a result, by use of the tile decoders 2002a to 2002n, the decoding process can be efficiently performed, such as that an image required for display can be decoded by performing only the minimum necessary decoding process.
The tile synthesis unit 2003 refers to the tile information transmitted from the header information decoder 2001 and the TileId of the tile to be decoded, and the tiles decoded by the tile decoders 2002a to 2002n, to generate and output the decoded image Td required for display.
Configuration of Tile Decoder
A configuration of the tile decoders 2002a to 2002n will be described. A configuration of the tile decoder 2002a as an example will be described below with reference to
The prediction parameter decoder 302 includes an inter prediction parameter decoder 303 and an intra prediction parameter decoder 304. The prediction image generator 308 includes an inter prediction image generator 309 and an intra prediction image generator 310.
In addition, examples in which the CTU, the CU, the PU, and the TU are used as the units for processing are described below, but the present invention is not limited to this example, and the process may be performed in units of CU instead of in units of TU or PU. Alternatively, the CTU, the CU, the PU, and the TU may be interpreted as the block, and the process may be interpreted as the process in units of block.
The entropy decoder 301 performs entropy decoding on the coding stream Te input from the outside, and separates and decodes individual codes (syntax elements). Examples of the separated codes include the prediction parameters for generating the prediction image and residual information for generating a difference image.
The entropy decoder 301 outputs a part of the separated codes to the prediction parameter decoder 302. Examples of a part of the separated codes include a prediction mode predMode, a PU split mode part_mode, a merge flag merge_flag, a merge index merge_idx, an inter prediction indicator inter_pred_idc, a reference picture index ref_idx_1X, a prediction vector index mvp_1X_idx, and a difference vector mvdLX. The control of which code to decode is performed based on an indication of the prediction parameter decoder 302. The entropy decoder 301 outputs quantized transform coefficients to the inverse quantization and inverse transform processing unit 311. These quantized transform coefficients are coefficients obtained through quantization by performing, on the residual signal, frequency conversion such as Discrete Cosine Transform (DCT), Discrete Sine Transform (DST), and Karyhnen Loeve Transform (KLT) in coding processing.
The inter prediction parameter decoder 303 decodes an inter prediction parameter with reference to a prediction parameter stored in the prediction parameter memory 307, based on a code input from the entropy decoder 301. The inter prediction parameter decoder 303 outputs the decoded inter prediction parameter to the prediction image generator 308, and also stores the decoded inter prediction parameter in the prediction parameter memory 307. Details of the inter prediction parameter decoder 303 will be described later.
The intra prediction parameter decoder 304 decodes an intra prediction parameter with reference to a prediction parameter stored in the prediction parameter memory 307, based on a code input from the entropy decoder 301. The intra prediction parameter is a parameter used in a processing to predict a CU in one picture, for example, an intra prediction mode IntraPredMode. The intra prediction parameter decoder 304 outputs a decoded intra prediction parameter to the prediction image generator 308, and also stores the decoded intra prediction parameter in the prediction parameter memory 307.
The intra prediction parameter decoder 304 may derive different intra prediction modes depending on luminance and chrominance. In this case, the intra prediction parameter decoder 304 decodes a luminance prediction mode IntraPredModeY as a prediction parameter of luminance, and decodes a chrominance prediction mode IntraPredModeC as a prediction parameter of chrominance. The luminance prediction mode IntraPredModeY has 67 modes, which correspond to the planar prediction (0), the DC prediction (1), and the Angular (directional) predictions (2 to 66). The chrominance prediction mode IntraPredModeC uses any of the planar prediction (0), the DC prediction (1), the Angular (directional) predictions (2 to 66), and the LM predictions (67 to 72). The intra prediction parameter decoder 304 decodes a flag indicating whether or not the chrominance prediction is a LM prediction, and in a case that the flag indicates a LM prediction, the intra prediction parameter decoder 304 decodes information regarding the LM prediction (information indicating whether or not it is a CCLM prediction, information specifying a down-sampling method). Here, the LM prediction will be described. The LM prediction is a prediction scheme using a correlation between a luminance component and a color component, in which a prediction image of the chrominance image (Cb, Cr) is generated using a linear model based on the decoded luminance image. The LM prediction includes a Cross-Component Linear Model prediction (CCLM prediction) and a Multiple Model ccLM (MMLM) prediction. The CCLM prediction is a prediction scheme using one linear model for predicting a chrominance from a luminance for one block. The MMLM prediction is a prediction scheme using two or more linear models for predicting a chrominance from a luminance for one block. In a case that a chrominance format is 4:2:0, the luminance image is downsampled to have a size the same as that of the chrominance image in order to create a linear model. This down-sampling method includes a method using a fixed sampling filter (default sampling filter) and a method of adaptively switching four sampling filters (additional sampling filters). Therefore, decoded as information specifying the downsampling method are information specifying whether the LM prediction is a CCLM prediction or a MMLM prediction, an index specifying whether or not the sampling filter is a default sampling filter, and the sampling filter in a case of using the additional sampling filter. In a case that the flag indicates that a prediction is different from the LM prediction, decoded as IntraPredModeC are the planar prediction (0), the DC prediction (1), the Angular predictions (2 to 66), and the DM prediction (chrominance prediction using the same prediction mode as the luminance prediction mode).
The loop filter 305 applies a filter such as a deblocking filter 313, a sample adaptive offset (SAO) 314, and an adaptive loop filter (ALF) 315 to a decoded image of the CU generated by the addition unit 312. Note that the loop filter 305 may not necessarily include the three types of filters as long as the loop filter 305 is paired with the tile encoder 2012, and may include only the deblocking filter 313, for example.
The reference picture memory 306 stores the decoded image of the CU generated by the addition unit 312 in a predefined location for each decoding target picture and CTU or CU.
The prediction parameter memory 307 stores a prediction parameter in a prescribed position for each picture and prediction unit (or a sub-block, a fixed size block, and a pixel) of a decoding target. Specifically, the prediction parameter memory 307 stores an inter prediction parameter decoded by the inter prediction parameter decoder 303, an intra prediction parameter decoded by the intra prediction parameter decoder 304 and a prediction mode predMode separated by the entropy decoder 301. For example, inter prediction parameters stored include a prediction list utilization flag predFlagLX (the inter prediction indicator inter_pred_idc), a reference picture index refIdxLX, and a motion vector mvLX.
To the prediction image generator 308, a prediction mode predMode input from the entropy decoder 301 is input, and a prediction parameter is input from the prediction parameter decoder 302. The prediction image generator 308 reads a reference picture from the reference picture memory 306. The prediction image generator 308 uses the input prediction parameters and the read out reference picture (reference picture block) to generate a prediction image of the PU (block) or sub-block in the prediction mode indicated by the prediction mode predMode.
Here, in a case that the prediction mode predMode indicates an inter prediction mode, the inter prediction image generator 309 uses the inter prediction parameter input from the inter prediction parameter decoder 303 and the read out reference picture (reference picture block) to generate the prediction image of the PU (block) or sub-block by the inter prediction.
For a reference picture list (an L0 list or an L1 list) where a prediction list utilization flag predFlagLX is 1, the inter prediction image generator 309 reads a reference picture block from the reference picture memory 306 in a position indicated by a motion vector mvLX, based on a decoding target PU from reference pictures indicated by the reference picture index refIdxLX. The inter prediction image generator 309 performs interpolation based on the read out reference picture block to generate the prediction image of the PU (interpolation image, motion compensation image). The inter prediction image generator 309 outputs the generated prediction image of the PU to the addition unit 312. Here, the reference picture block is a set of pixels on the reference picture (the reason to be called a block is because it generally has a rectangle shape), and is an area referred to in order to generate the prediction image of the PU or sub-block.
Tile Boundary Padding
The reference picture block (reference block) is a block that is at a position indicated by the motion vector mvLX with reference to a position of the target CU (block) on the reference picture indicated by the reference picture index refIdxLX with respect to the reference picture list of the prediction list utilization flag predFlagLX=1. As described above, there is no assurance that the pixels of the reference block are located within the tile (collocated tile) on the reference picture having the same TileId as the target tile. Therefore, as an example, the reference block can be read without referring to values of the pixels outside the collocated tile by padding the outside of each tile (compensating by the values of pixels on the tile boundary) in the reference picture, as illustrated in
The tile boundary padding (padding outside tile) is achieved by using a pixel value refImg[xRef+i][yRef+j] at the following position xRef+i, yRef+j as a pixel value of a reference pixel position (xIntL+i, yIntL+j) in motion compensation by the motion compensation unit 3091 described below. That is, in referring to the reference pixel, the reference position is achieved by clipping at the positions of the boundary pixels on the top, bottom, left, and right of the tile.
xRef+i=Clip3(xTs,xTs+wT−1,xIntL+i) (Expression PAD-1)
yRef+j=Clip3(yTs,yTs+hT−1,yIntL+j)
where, (xTs, yTs) is the upper left coordinates of the target tile in which the target block is located, and wT and hT are a width and height of the target tile.
Note that, xIntL and yIntL assuming that the upper left coordinates of the target block relative to the upper left coordinates of the picture are (xb, yb) and the motion vector is (mvLX[0], mvLX[1]) may be derived by
xIntL=xb+(mvLX[0]>>log 2(M)) (Expression PAD-2)
yIntL=yb+(mvLX[1]>>log 2(M)).
where M indicates that an accuracy of the motion vector is 1/M pel.
By reading the pixel values of the coordinates (xRef+i, yRef+j), the padding in
In the case of independent_tile_flag=1, by padding the tile boundary in this manner, the reference pixel is replaced by the pixel value in the collocated tile, even in a case that the motion vector points to the outside of the collocated tile in the inter prediction, and therefore, the tile sequence can be independently decoded by use of the inter prediction.
Tile Boundary Motion Vector Restriction
Other restriction methods of the tile boundary padding include tile boundary motion vector restriction. In this processing, in motion compensation by the motion compensation unit 3091 described later, the motion vector is restricted (clipped) so that the position (xIntL+i, yIntL+j) of the reference pixel is within the collocated tile.
In this processing, in a case that the upper left coordinates (xb, yb) of the target block (target sub-block or target block), the size (W, H) of the block, the upper left coordinates (xTs, yTs) of the target tile, and the width and height of the target tile being wT, hT, the motion vector mvLX of the block is input and the restricted motion vector mvLX is output.
A left end posL, a right end posR, an upper end posU, and a lower end posD of the reference pixel in the generation of the interpolation image of the target block are as below. Note that NTAP is the number of taps of the filter used for generating the interpolation image.
posL=xb+(mvLX[0]>>log 2(M))−NTAP/2+1 (Expression CLIP1)
posR=xb+W−1+(mvLX[0]>>log 2(M))+NTAP/2
posU=yb+(mvLX[1]>>log 2(M))−NTAP/2+1
posD=yb+H−1+(mvLX[1]>>log 2(M))+NTAP/2
The restrictions for the reference pixels being within the collocated tile are as below.
posL>=xTs (Expression CLIP2)
posR<=xTs+wT−1
posU>=yTs
posD<=yTs+hT−1
The following deformation is possible.
posL=xb+(mvLX[0]>>log 2(M))−NTAP/2+1>=xTs (Expression CLIP3)
(mvLX[0]>>log 2(M))>=xTs−xb+NTAP/2−1
posR=xb+W−1+(mvLX[0]>>log 2(M))+NTAP/2<=xTs+wT−1
(mvLX[0]>>log 2(M))<=xTs+wT−1−xb−W+1−NTAP/2
posU=yb+(mvLX[1]>>log 2(M))−NTAP/2+1>=yTs
(mvLX[0]>>log 2(M))>=yTs−yb+NTAP/2−1
posD=yb+H−1+(mvLX[1]>>log 2(M))+NTAP/2<=yTs+hT−1
(mvLX[1]>>log 2(M))<=yTs+hT−1−yb−H+1−NTAP/2
Accordingly, the restrictions on the motion vector may be derived from the following expressions.
mvLX[0]=Clip3(vx min,vx max,mvLX[0]) (Expression CLIP4)
mvLX[1]=Clip3(vy min,vy max,mvLX[1])
where,
vx min=(xTs−xb+NTAP/2−1)<<log 2(M) (Expression CLIP5)
vx max=(xTs+wT−xb−W−NTAP/2)<<log 2(M)
vy min=(yTs−yb+NTAP/2−1)<<log 2(M)
vy max=(yTs+hT−yb−H−NTAP/2)<<log 2(M)
In the case of independent_tile_flag=1, by restricting the motion vector in this way, the motion vector can always point to the outside of the collocated tile in the inter prediction. Even in this configuration, the tile sequence may be independently decoded using the inter prediction.
In a case that the prediction mode predMode indicates an intra prediction mode, the intra prediction image generator 310 performs an intra prediction by using an intra prediction parameter input from the intra prediction parameter decoder 304 and a read reference picture. Specifically, the intra prediction image generator 310 reads a neighboring PU, which is a picture of a decoding target, in a prescribed range from a decoding target PU among PUs already decoded, from the reference picture memory 306. The prescribed range is, for example, any of neighboring PUs in left, upper left, top, and upper right in a case that a decoding target PU moves in order of so-called raster scan sequentially, and varies according to intra prediction modes. The order of the raster scan is an order to move sequentially from the left edge to the right edge in each picture for each row from the top edge to the bottom edge.
The intra prediction image generator 310 performs the prediction in the prediction mode indicated by the intra prediction mode IntraPredMode based on the read out neighboring PU to generate the prediction image of the PU. The intra prediction image generator 310 outputs the generated prediction image of the PU to the addition unit 312.
In a case that the intra prediction parameter decoder 304 derives the intra prediction mode different in luminance and chrominance, the intra prediction image generator 310 generates a luminance prediction image of the PU by any of the planar prediction (0), the DC prediction (1), and the Angular directional predictions (2 to 66) in accordance with the luminance prediction mode IntraPredModeY, and generates a chrominance prediction image of the PU by any of the planar prediction (0), the DC prediction (1), the Angular predictions (2 to 66), and the LM mode (67 to 72) in accordance with the chrominance prediction mode IntraPredModeC.
In the Planar prediction, DC prediction, and Angular prediction, a decoded peripheral region neighboring to (proximate to) the prediction target block is configured as the reference region R. Schematically, these prediction modes are prediction schemes for generating a prediction image by extrapolating pixels on the reference region R in a particular direction. For example, the reference region R may be configured as a reverse L-shaped region (for example, regions indicated by pixels of hashed circles in
Details of Prediction Image Generator
Next, a configuration of the intra prediction image generator 310 will be described in detail using
As illustrated in
The filtered reference image configuration unit 3103 applies a reference pixel filter (first filter) to reference pixels (unfiltered reference image) on the input reference region R to generate a filtered reference image and output the generated filtered reference image to the predictor 3104. The predictor 3104 generates a temporary prediction image (pre-correction prediction image) of the prediction target block, based on the input intra prediction mode, the unfiltered reference image, and the filtered reference image, and outputs the generated image to the prediction image correction unit 3105. The prediction image correction unit 3105 corrects the temporary prediction image in accordance with the input intra prediction mode, and generates a prediction image (corrected prediction image). The prediction image generated by the prediction image correction unit 3105 is output to an adder 15.
Hereinafter, the components included in the intra prediction image generator 310 will be described.
Prediction Target Block Configuration Unit 3101
The prediction target block configuration unit 3101 configures the target CU in the prediction target block, and outputs information on the prediction target block (prediction target block information). The prediction target block information includes at least a prediction target block size, a prediction target block position, and an index indicating whether the prediction target block is a luminance or a chrominance.
Unfiltered Reference Image Configuration Unit 3102
The unfiltered reference image configuration unit 3102 configures a peripheral region neighboring to the prediction target block as the reference region R, based on the prediction target block size and the prediction target block position in the prediction target block information. Subsequently, each pixel value in the reference region R (the unfiltered reference image, the boundary pixels) is set with each decoded pixel value at the corresponding location on the reference picture memory 306. In other words, the unfiltered reference image r[x][y] is configured by the following expression using the decoded pixel value u[px][py] of the target picture expressed with reference to the upper left coordinates of the target picture.
r[x][y]=u[xB+x][yB+y] (INTRAP-1)
x=−1,y=−1 . . . (BS*2−1) and x=0 . . . (BS*2−1),y=−1
where, (xB, yB) represent the upper left coordinates of the prediction target block, and BS represents a value of the larger one of the width W and height H of the prediction target block.
In the above expressions, as illustrated in
In the above expression, as described later with reference to
Filtered Reference Image Configuration Unit 3103
The filtered reference image configuration unit 3103 applies (gives) a reference pixel filter (first filter) to the input unfiltered reference image in accordance with the intra prediction mode to derive and output a filtered reference image s[x][y] at each position (x, y) on the reference region R. Specifically, a low-pass filter is applied to the unfiltered reference image at and around the position (x, y) to derive a filtered reference image. Note that the low pass filter need not necessarily be applied to the total intra prediction mode, and the low-pass filter may be applied to at least some intra prediction modes. Note that, the filter that is applied to the unfiltered reference image on the reference region R by the filtered reference image configuration unit 3103 before the input to the predictor 3104 in
For example, as in an HEVC intra prediction, in the case of the DC prediction or in the case that the prediction target block size is 4×4 pixels, the unfiltered reference image may be used directly as a filtered reference image. Whether to apply the low pass filter may be switched by way of the flag decoded from the coded data. Note that in the case that the intra prediction mode is the LM prediction, the predictor 3104 does not directly refer to the unfiltered reference image, and thus, the filtered reference pixel value s[x][y] may not be output from the filtered reference image configuration unit 3103.
Configuration of Intra Predictor 3104
The intra predictor 3104 generates the temporary prediction image (temporary prediction pixel values, pre-correction prediction image) of the prediction target block based on the intra prediction mode, the unfiltered reference image, and the filtered reference pixel value, and outputs the generated image to the prediction image correction unit 3105. The predictor 3104 includes therein a Planar predictor 31041, a DC predictor 31042, an Angular predictor 31043, and a LM predictor 31044. The predictor 3104 selects a specific predictor in accordance with the input intra prediction mode to input the unfiltered reference image and the filtered reference image. A relationship between the intra prediction mode and the corresponding predictor is as follows.
The predictor 3104, in an intra prediction mode, generates a prediction image of the prediction target block (temporary prediction image q[x][y]), based on the filtered reference image. In other intra prediction modes, the unfiltered reference image may be used to generate the temporary prediction image q[x][y]. The reference pixel filter may be turned on in the case of using the filtered reference image, and the reference pixel filter may be turned off in the case of using the unfiltered reference image.
Hereinafter, an example will be described in which the unfiltered reference image r[ ][ ] is used to generate the temporary prediction image q[x][y] in the case of the LM prediction, and the filtered reference image s[ ][ ] is used to generate the temporary prediction image q[x][y] in the case of the Planar prediction, the DC prediction, and the Angular prediction, but the selection of the unfiltered reference image and the filtered reference image is not limited to this example. For example, whether to use the unfiltered reference image or the filtered reference image may be switched depending on a flag that is explicitly decoded from the encoded data, or may be switched based on a flag derived from another coding parameter. For example, in the case of the Angular prediction, in a case that a difference between the intra prediction mode number of the prediction target block and the intra prediction mode number of the vertical prediction or the horizontal prediction is small, the unfiltered reference image may be used (the reference pixel filter may be turned off), otherwise the filtered reference image may be used (the reference pixel filter may be turned on).
Planar Prediction
The Planar predictor 31041 linearly adds multiple filtered reference images in accordance with a distance between the prediction target pixel position and the reference pixel position to generates a temporary prediction image, and outputs the generated image to the prediction image correction unit 3105. For example, the pixel value q[x][y] of the temporary prediction image is derived from the following expression using the filtered reference pixel value s[x][y] and the width W and height H of the prediction target block described above.
Q[x][y]=((W−1−x)*5[4][y]+(x+1)*s[W][4]+(H−1−y)*s[x][4]+(y+1)*s[−1][H]+max(W,H))>>(k+1) (INTRAP-2)
where, it is defined as x=0 . . . W−1, y=0>>H−1, and k=log 2(max(W, H)).
DC Prediction
The DC predictor 31042 derives an DC prediction value corresponding to an average value of the filtered reference image s[x][y] to be input, and outputs a temporary prediction image q[x][y] having a pixel value of the derived DC prediction value.
Angular Prediction
The Angular predictor 31043 generates the temporary prediction image q[x][y] using the filtered reference image s[x][y] in the prediction direction (reference direction) indicated by the intra prediction mode, and outputs the generated image to the prediction image correction unit 3105. In the Angular prediction, the reference region R neighboring to the top or left of the prediction target block is configured as a main reference region R in accordance with a value of a main direction flag bRefVer, and a filtered reference image on the main reference region R is set to a main reference image. The temporary prediction image is generated by referring to the main reference image in units of rows or columns within the prediction target block. In a case that the value of the main direction flag bRefVer is 1 (a main direction is the vertical direction), a generation unit of the temporary prediction image is configured as a row, and the reference region R on the upper side of the prediction target block is set as the main reference region R. The main reference image refMain[x] is set by the following expression using the filtered reference image s[x][y].
refMain[x]=s[−1+x][−1]x=0 . . . 2*nS (INTRAP-3)
refMain[x]=s[−1][−1+((x*invAngle+128)>>8)]x=−nS . . . −1
where, invAngle corresponds to a value obtained by scaling an inverse of a slope intraPredAngle determined depending on distances in the vertical/horizontal directions between the prediction target pixel position and the main reference region R, and the prediction direction. According to the above expressions, in a range where x is 0 or greater, a filtered reference image on the reference region R neighboring to the upper side of the prediction target block is set in refMain[x]. In a range where x is less than 0, a filtered reference image on the reference region R neighboring to the left side of the prediction target block is set in refMain[x] based on the prediction direction. The temporary prediction image q[x][y] is calculated by the following expression.
q[x][y]=((32−iFact)*refMain[x+iIdx+1]+iFact*refMain[x+iIdx+2]+16)>>5 (INTRAP-4)
where, iIdx and iFact represent pixel positions in the main reference region R used to generate the target prediction pixel value calculated based on the distance (y+1) between the prediction target pixel position and the main reference region R in the vertical direction, and the slope intraPredAngle. iIdx represents a pixel position with an integer precision and iFact represents a pixel position with a decimal precision, which are derived with the following expression.
iIdx=((y+1)*intraPredAngle)>>5 (INTRAP-5)
iFact=((y+1)*intraPredAngle)&31
In a case that the value of the main direction flag bRefVer is 0 (a main direction is the horizontal direction), the generation unit of the temporary prediction image is configured as a column, and the reference region R on the left side of the prediction target block is set as the main reference region R. The main reference image refMain[x] is set by the following expression using the filtered reference pixel value s[x][y].
refMain[x]=s[−1][−1+x]x=0 . . . nS (INTRAP-6)
refMain[x]=s[−1+((x*invAngle+128)>>8)][4]x=−nS−1
The temporary prediction image q[x][y] is calculated by the following expression.
q[x][y]=((32−iFact)*refMain[y+iIdx+1]+iFact*refMain[y+iIdx+2]+16)>>5 (INTRAP-7)
where, iIdx and iFact represent pixel positions in the main reference region R used to generate the prediction target pixel value calculated based on the distance (x+1) between the prediction target pixel position and the main reference region R in the horizontal direction, and the slope intraPredAngle. iIdx represents a pixel position with an integer precision and iFact represents a pixel position with a small accuracy, which are derived with the following expression.
iIdx=((x+1)*intraPredAngle)>>5 (INTRAP-8)
iFact=((x+1)*intraPredAngle)&31
LM Prediction
The LM predictor 31044 predicts a pixel value of a chrominance, based on a pixel value of a luminance.
The CCLM prediction process will be described with reference to
In a case of the default sampling filter (
duL[x][y]=(uL[2x−1][2y]+2*uL[2x][2y]+uL[2x+1][2y]+uL[2x−1][2y+1]+2*uL[2x][2y+1]+uL[2x+1][2y+1]+4)>>3 (Expression CCLM-1)
drL[x][y]=(rL[2x−1][2y]+2*rL[2x][2y]+rL[2x+1][2y]+rL[2x—1][2y+1]+2*rL[2x][2y+1]+rL[2x+1][2y+1]+4)>>3
In a case of the additional sampling filter:
Filter index 1 (
duL[x][y]=(uL[2x][2y]+uL[2x+1][2y]+1)>>1 (Expression CCLM-2)
drL[x][y]=(rL[2x][2y]+rL[2x+1][2y]+1)>>1
Filter index 2 (
duL[x][y]=(uL[2x+1][2y]+uL[2x+1][2y+1]+1)>>1
drL[x][y]=(rL[2x+1][2y]+rL[2x+1][2y+1]+1)>>1
Filter index 3 (
duL[x][y]=(uL[2x][2y+1]+uL[2x+1][2y+1]+1)>>1
drL[x][y]=(rL[2x][2y+1]+rL[2x+1][2y+1]+1)>>1
Filter index 4 (
duL[x][y]=(uL[2x][2y]+uL[2x+1][2y]+uL[2x][2y+1]+uL[2x+1][2y+1]+2)>>2
drL[x][y]=(rL[2x][2y]+rL[2x+1][2y]+rL[2x][2y+1]+rL[2x+1][2y+1]+2)>>2
Here, (2x, 2y) is replaced with the upper left coordinates of A and B in
The temporary prediction images of Cb and Cr components are generated from the luminance images duL[ ][ ] and drL[ ][ ] downsampled by use of any of these filters above.
The CCLM predictor 4101 downsamples the luminance image using any of the filters described above in the case that the chrominance format is 4:2:0, and calculates the decoded image duL[ ][ ] of the downsampled luminance component in
Next, the CCLM predictor 4101 derives the parameters (CCLM parameters) (a, b) of the linear model from the unfiltered reference image drL[ ][ ] of the downsampled luminance component, and the unfiltered reference images rCb[ ][ ] and rCr[ ][ ] of the Cb and Cr components. Specifically, a linear model (aC, bC) is calculated that minimizes a square error SSD between the unfiltered reference image drL[ ][ ] of the luminance component and the unfiltered reference image rC[ ][ ] of the chrominance component.
SSD=ΣΣ(rC[x][y]−(aC*drL[x][y]+bC)) (Expression CCLM-3)
where ΣΣ is the sum for x and y. In the case of the Cb component, rC[ ][ ] is rCb[ ][ ] and (aC, bC) is (aCb, bCb), and in the case of the Cr component, rC[ ][ ] is rCr[ ][ ] and (aC, bC) is (aCr, bCr).
In order to utilize correlation between prediction errors of the Cb component and the Cr component, a linear model aResi is calculated that minimizes a square error SSD between the unfiltered reference image rCb[ ][ ] of the Cb component and the unfiltered reference image rCr[ ][ ] of the Cr component.
SSD=ΣΣ(rCr[x][y]−(aResi*rCb[x][y]) (Expression CCLM-4)
where ΣΣ is the sum for x and y. These CCLM parameters are used to generate the temporary prediction images qCb[ ][ ] and qCr[ ][ ] of the chrominance component using the following expressions.
qCb[x][y]=aCb*duL[x][y]+bCb (Expression CCLM-5)
qCr[x][y]=aCr*duL[x][y]+aResi*ResiCb[x][y]+bCr
where, ResiCb[ ][ ] is a prediction error of the Cb component.
The MMLM predictor 4102 is used in a case that the relationship between the unfiltered reference images of the luminance component and the chrominance component is categorized into two or more linear models. In a case that there are multiple regions in the target block, such as a foreground and a background, the linear model between the luminance component and the chrominance component is different for each region. In such a case, multiple linear models may be used to generate a temporary prediction image of the chrominance component from the decoded image of the luminance component. For example, in a case of two linear models, the pixel values of the unfiltered reference images of the luminance components are divided into two at a certain threshold th_mmlm, and a linear model is calculated that minimizes the square error SSD between the unfiltered reference image drL[ ][ ] of the luminance component and the unfiltered reference image rC[ ][ ] of the chrominance component for a category 1 in which the pixel value is equal to or smaller than the threshold th_mmlm and a category 2 in which the pixel value is greater than the threshold th_mmlm.
SSD1=ΣΣ(rC[x][y]−(a1C*drL[x][y]+b1))(if drL[x][y]<=th_mmlm) (Expression CCLM-6)
SSD2=ΣΣ(rC[x][y]−(a2C*drL[x][y]+b2))(if drL[x][y]>th_mmlm)
where, ΣΣ is a sum for x and y, in the case of the Cb component, rC[ ][ ] is rCb[ ][ ] and (a1C, b1C) is (a1Cb, b1Cb), and in the case of the Cr component, rC[ ][ ] is rCr[ ][ ] and (a1C, b1C) is (a1Cr, b1Cr).
The threshold th_mmlm may be an average of the unfiltered reference image drL[x][y] of the luminance component.
th_mmlm=drL[x][y]+(W+H)/4)/(W/2+H/2) (Expression CCLM-7)
Alternatively, the threshold th_mmlm may be an average of the decoded image duL[x][y] of the luminance component.
th_mmlm=duL[x][y]+(W*H)/8)/(W*H/4) (Expression CCLM-8)
where, W and H represent the width and height of the target block, respectively.
Since the MMLM has a fewer number of samples of the unfiltered reference image available for derivation of each linear model than the CCLM, the MMLM may not properly operate in a case that the target block size is small or the number of samples is small. Thus, as illustrated in
The target block size is equal to or smaller than TH_MMLMB (TH_MMLMB is 8×8, for example)
The number of samples of the unfiltered reference image rCb[ ][ ] of the target block is smaller than TH_MMLMR (TH_MMLMR is 4, for example)
No unfiltered reference image of the target block is on both the upper side and the left side of the target block
These conditions can be determined by the size and position information of the target block, and thus, the signaling of the flag indicating whether or not the CCLM is used may be omitted.
In a case that the threshold th_mmlm is configured as the average of the unfiltered reference image drL[x][y] of the luminance component, in case that the decoded image duL[ ][ ] of the luminance component is concentrated on one side of th_mmlm, for example, in a case that 7/8 pixels of duL[ ][ ] is concentrated in one category, the MMLM is turned off. In this case, the flag indicating whether or not the CCLM is used may be signaled to notify that the MMLM is turned off (CCLM is selected).
In a case that a part of the unfiltered reference image is outside the tile, the MMLM is less likely to be selected. Thus, in the case that a portion of the unfiltered reference image is outside the tile, the default sampling filter may be used in downsampling without informing information required for downsampling so that a required amount of codes is reduced and the MMLM is likely to be selected.
In the case that a portion of the unfiltered reference image is outside the tile, the LM prediction may be turned off. In the blocks for which the intra prediction is used, the flag indicating whether or not the CCLM prediction is used is signaled in the first area of the intra prediction information of the chrominance component, and thus, the amount of codes can be reduced by not signaling the flag. That is, the on-off control of the CCLM is performed at the tile boundary.
Typically, in a case that the chrominance component of the target block has a higher correlation with the luminance component in the target block at the same position as itself than the same chrominance component as itself in the neighboring block, the LM prediction is applied in the intra prediction, a more accurate prediction image is generated, and the coding efficiency is increased by reducing the prediction residuals. As described above, by reducing the information required for the LM prediction and making the LM prediction more likely to be selected, even in a case that the reference image neighboring to the target block is outside the tile, a decrease in the coding efficiency can be suppressed while independently intra-predicting the tile.
Note that since the LM prediction generates the temporary prediction image by using the unfiltered reference image, the temporary prediction image by the LM prediction is not subjected to the correction process in the prediction image correction unit 3105.
Note that the configuration described above is an example of the predictor 3104, and the configuration of the predictor 3104 is not limited to the above configuration.
Configuration of Prediction Image Correction Unit 3105
The prediction image correction unit 3105 corrects the temporary prediction image that is the output of the predictor 3104 in accordance with the intra prediction mode. Specifically, the prediction image correction unit 3105 weighted-adds (weighted-averages), for each pixel of the temporary prediction image, the unfiltered reference image and the predicted prediction image in accordance with the distance between the reference region R and the target prediction pixel to output a prediction image (corrected prediction image) Pred that is a corrected temporary prediction image. Note that in some intra prediction modes, the prediction image correction unit 3105 may not necessarily correct the temporary prediction image, and the output of the predictor 3104 as it is may be used as the prediction image. Additionally, the output of the predictor 3104 (the temporary prediction image, the pre-correction prediction image) and the output of the prediction image correction unit 3105 (the prediction image, the corrected prediction image) may be configured to be switched to each other in accordance with a flag explicitly derived from the coded data or a flag derived from the coding parameter.
A process for deriving the prediction pixel value Pred[x][y] at the position (x, y) within the prediction target block using the boundary filter in the prediction image correction unit 3105 will be described with reference to
A weight coefficient for the unfiltered reference image is derived by right shifting a reference intensity coefficient C=(c1v, c1h, c2v, c2h) predetermined for each prediction direction by a distance weight k (k[x] or k[y]) that depends on the distance (x or y) to the reference region R. More specifically, as a weight coefficient (first weight coefficient w1v) for the unfiltered reference image r[x][−1] on the upper side of the prediction target block, the reference intensity coefficient clv is right shifted by the distance weight k[y] (vertical distance weight). As a weight coefficient (second weight coefficient w1h) for the unfiltered reference image r[−1][y] on the left side of the prediction target block, the reference intensity coefficient c1h is right shifted by the distance weight k[x] (horizontal distance weight). Additionally, as a weight coefficient (third weight coefficient w2) for the unfiltered reference image r[−1][−1] in the upper left of the prediction target block, a sum of the reference intensity coefficient c2v being right shifted by the distance weight k[y] and the reference intensity coefficient c2h being right shifted by the distance weight k[x] is used.
Also for the distance weight k[y], the definition can be utilized in which the horizontal distance x is replaced with the vertical distance y at the distance weight k[x] described above. The values of the distance weights k[x] and k[y] become smaller as the values of x and y are larger, respectively.
According to the method for deriving the target prediction image using the above expressions in
Note that the reference distance is defined as the distance between the prediction target pixel and the reference region R, and examples of the reference distance include the pixel positions (x, y) within the prediction target block, but other variables representing the distance between the prediction target image and the reference region R may be used as the reference distance. For example, the distance between the prediction target pixel and the pixel on the closest reference region R may be defined as the reference distance. The distance between the prediction target pixel and the pixel on the reference region R neighboring to the upper left position of the prediction target block may be defined as the reference distance. Also, in a case that the reference distance is defined by a distance between two pixels, the distance may be a distance in a broad sense. The broad distance d (a, b) in a broad sense meets each property of non-negativity d(a, b)≥0, symmetry d(a, b)=d(b, a), and triangle inequality d(a, b)+d(b, c)≥d(a, c) for any three points a, b, c∈X. Note that in the following description, the reference distance is represented by the reference distance x, but x is not limited to the horizontal distance, and can be applied to any reference distance. For example, in a case that a calculation expression for the distance weight k[x] is illustrated, the expression can also be applied to the distance weight k[y] calculated using the vertical reference distance y as a parameter.
Hereinafter, an operation of the prediction image correction unit 3105 will be described with reference to
(S4301) The prediction image correction unit 3105 derives the distance weight k[x] in the x direction and the distance weight k[y] in the y direction in accordance with the distance (x or y) between the prediction target pixel (x, y) and the reference region R, respectively.
(S4302) The prediction image correction unit 3105 multiplies each reference intensity coefficient by each distance weight derived at S4301 to derive the following weight coefficients.
First weight coefficient w1v=c1v>>k[y]
Second weight coefficient w1h=c1h>>k[x]
Third weight coefficient w2=(c2v>>k[y])+(c2h>>k[x])
(S4303) The prediction image correction unit 3105 calculates a product of each weight coefficient (w1v, w1h, w2) derived at S4302 and the corresponding unfiltered reference pixel value (r[x][−1], r[−1][y], r[−1][−1]).
Product of r[x][−1] and w1v,m1=w1v*r[x][−1]
Product of r[−1][y] and w1h,m2=w1h*r[−1][y]
Product of r[−1][−1] and w2,m3=w2*r[−1][−1]
(S4304) The prediction image correction unit 3105 derives a weight coefficient b[x][y] from the following expression so that the total sum of the first weight coefficient w1v, the second weight coefficient w1h, the third weight coefficient w2, and the weight coefficient b[x][y] is (1<<rshift) for the prediction target pixel (x, y).
b[x][y]=(1<<rshift)—w1v−w1h+w2
(S4305) The prediction image correction unit 3105 calculates the product m4 of the temporary prediction image q[x][y] and the weight coefficient b[x][y].
m4=b[x][y]*q[x][y]
(S4306) The prediction image correction unit 3105 derives a total sum of the products m1, m2, and m3 derived at S4304, and m4 derived at S4305, and a rounding adjustment term (1<<(rshift−1)) from the following expression.
sum=m1+m2−m3+m4+(1<<(rshift−1)
(S4307) The prediction image correction unit 3105 derives the prediction image (corrected prediction image) Pred[x][y] by performing right shift operation on the addition value sum derived at S4306 with the normalization adjustment term rshift as described below.
Pred[x][y]=sum>>rshift
Note that the rounding adjustment term (1<<(rshift−1)) is preferable, but is not limited thereto. For example, the rounding adjustment term may be 0 or other predetermined constants.
Note that the reference intensity coefficient C (c1v, c2v, c1h, c2h) may be different for each prediction direction.
The prediction image correction unit 3105 generates the prediction image (corrected prediction image) Pred[ ][ ] within the prediction target block by repeating the process indicated in S4301 to S4307 for all of the pixels within the prediction target block. Note that the operation of the prediction image correction unit 3105 is not limited to the above-described steps, and can be changed in a performable range.
Examples of Filter Mode and Reference Intensity Coefficient C
The reference intensity coefficient C (c1v, c2v, c1h, c2h) of the prediction image correction unit 3105 (boundary filter) is dependent on the intra prediction mode IntraPredMode, and is derived by referring to a table ktable corresponding to the intra prediction mode. An example of a reference intensity coefficient table is illustrated in
Flow of Prediction Image Generation Process
Next, an overview of the prediction image generation process in units of block (or CU or PU) in the intra prediction image generator 310 will be described with reference to a flowchart in
(S4501) The prediction target block configuration unit 3101 configures the prediction target block and outputs the prediction target block information to the unfiltered reference image configuration unit 3102.
(S4502) The unfiltered reference image configuration unit 3102 sets the decoded pixel value read from the reference picture memory to the unfiltered reference image and outputs the unfiltered reference image to the filtered reference image configuration unit 3103 and the prediction image correction unit 3105.
(S4503) The filtered reference image configuration unit 3103 applies the reference pixel filter to the unfiltered reference image set at S4502 to derive a filtered reference image and output the derived image to the predictor 3104.
(S4504) The predictor 3104 generates and outputs a temporary prediction image of the prediction target block from the intra prediction mode and the filtered reference image derived at S4503.
(S4505) The prediction image correction unit 3105 corrects the temporary prediction image derived at S4504, based on the intra prediction mode and the unfiltered reference image set at S4502 to generate and output the prediction image Pred (corrected prediction image).
In the above-described configuration, the reference intensity coefficient C (c1v, c2v, c1h, c2h) of the prediction image correction unit 3105 (boundary filter) is dependent on the intra prediction mode IntraPredMode, and is derived by referring to the table based on the intra prediction mode. The reference intensity coefficient C of the boundary filter may be used not only as weight coefficients for the nearest upper pixel r[x][4], the nearest left pixel r[−1][y], and the nearest upper left pixel r[−1][−1] of the prediction target pixel (x, y), but also as weight coefficients for the nearest right pixel and the nearest left lower pixel, for example.
Note that the unfiltered reference image r[−][−1] is necessary for the correction process of the prediction image, but in a case that the prediction target block shares the border with the tile boundary, a configuration of the following tile boundary boundary filter configuration is used because r[−1][−1] cannot be referred to.
Tile Boundary Boundary Filter
As illustrated in
Alternatively, the near upper right on-boundary pixel r[W−1][−1] is referred to, instead of the upper left boundary pixel r[−1][−1], and the boundary filter illustrated in
Alternatively, the near lower left left-boundary pixel r[−1][H−1] is referred to, instead of the upper left boundary pixel r[−1][−1], and the boundary filter illustrated in
By replacing the upper left boundary pixel r[−1][−1] with a referable pixel in this manner, even in a case that one of the left side or the upper side of the prediction target block shares the border with the tile boundary, the boundary filter can be applied while the tile is independently intra-predicted, and the coding efficiency can be increased.
Tile Boundary Boundary Filter 2
A configuration is described in which, in the unfiltered reference image configuration unit 3102 of the intra prediction image generator 310, in a case that a unfiltered reference image not referable is present, an unfiltered reference image is generated from a referable reference image to apply the boundary filter to the tile boundary. In this configuration, a boundary pixel (unfiltered reference image) r[x][y] is derived in accordance with the process including the following steps.
Step 1: In a case that r[−1][H*2−1] is not referable, pixels from x=−1, y=H*2−1 to x=−1, y=−1 are sequentially scanned. In a case that a referable reference pixel r[−1][y] is found during the scanning, the scanning is ended and r[−1][y] is configured as r[−1][H*2−1]. Subsequently, in a case that r[W*2−1][−1] is not referable, pixels from x=W*2−1, y=−1 to x=0, y=−1 are sequentially scanned. In a case that a referable reference pixel r[x][−1] is found during the scanning, the scanning is ended and r[x][−1] is configured as r[W*2−1][−1].
Step 2: Pixels from x=−1, y=H*2−2 to x=−1, y=−1 are sequentially scanned, and in a case that r[−1][y] is not referable during the scanning, r[−1][y+1] is configured as r[−1][y].
Step 3: Pixels from x=0 . . . W*2−2, y=−1 to x=0, y=−1 are sequentially scanned, and in a case that r[x][−1] is not referable, r[x+1][−1] is configured as r[x][−1].
Note that, the case that the boundary pixel r[x][y] is not referable is a case that the reference pixel is not present in the same tile as the target pixel, a case that the reference pixel is not present in the same slice as the target pixel, or a case that the reference pixel is outside a picture boundary. The above process is also referred to as a boundary pixel substitution process (unfiltered image substitution process).
The inverse quantization and inverse transform processing unit 311 dequantizes the quantized transform coefficients input from the entropy decoder 301 to find transform coefficients. The inverse quantization and inverse transform processing unit 311 performs inverse frequency transform such as inverse DCT, inverse DST, and inverse KLT on the found transform coefficients to compute a prediction residual signal. The inverse quantization and inverse transform processing unit 311 outputs the computed residual signal to the addition unit 312.
The addition unit 312 adds the prediction image of the PU input from the inter prediction image generator 309 or intra prediction image generator 310 and the residual signal input from the inverse quantization and inverse transform processing unit 311 for each pixel to generate a decoded image of the PU. The addition unit 312 outputs the decoded image of the generated block to at least any one of the deblocking filter 313, the SAO (sample adaptive offset) unit 314, or the ALF 315.
Configuration of Inter Prediction Parameter Decoder
Next, a description is given of a configuration of the inter prediction parameter decoder 303.
The inter prediction parameter decoding control unit 3031 instructs the entropy decoder 301 to decode the code (syntax element) associated with the inter prediction to extract the code (syntax element) included in the coded data, for example, the PU split mode part_mode, the merge flag merge_flag, the merge index merge_idx, the inter prediction indicator inter_pred_idc, the reference picture index ref_Idx_1X, the prediction vector index mvp_1X_idx, and the difference vector mvdLX.
The inter prediction parameter decoding control unit 3031 first extracts the merge flag merge_flag. An expression that the inter prediction parameter decoding control unit 3031 “extracts a certain syntax element” means instructing the entropy decoder 301 to decode a certain syntax element to read the syntax element from the coded data.
In a case that the merge flag merge_flag is 0, that is, indicates the AMVP prediction mode, the inter prediction parameter decoding control unit 3031 uses the entropy decoder 301 to extract the AMVP prediction parameter from the coded data. Examples of the AMVP prediction parameter include the inter prediction indicator inter_pred_idc, the reference picture index refIdxLX, the prediction vector index mvp_1X_idx, and the difference vector mvdLX. The AMVP prediction parameter deriver 3032 derives the prediction vector mvpLX from the prediction vector index mvp_1X_idx. Details will be described below. The inter prediction parameter decoding control unit 3031 outputs the difference vector mvdLX to the addition unit 3035. The addition unit 3035 adds the prediction vector mvpLX and the difference vector mvdLX to derive a motion vector.
In a case that the merge flag merge_flag is 1, that is, indicates the merge prediction mode, the inter prediction parameter decoding control unit 3031 extracts the merge index merge_idx as a prediction parameter related to the merge prediction. The inter prediction parameter decoding control unit 3031 outputs the extracted merge index merge_idx to the merge prediction parameter deriver 3036 (details of which are described later), and outputs a sub-block prediction mode flag subPbMotionFlag to the sub-block prediction parameter deriver 3037. The sub-block prediction parameter deriver 3037 splits the PU into multiple sub-blocks depending on a value of the sub-block prediction mode flag subPbMotionFlag to derive a motion vector in units of sub-block. Specifically, in the sub-block prediction mode, a prediction block is predicted in units of block as small as 4×4 or 8×8. In the tile encoder 2012 described later, for a method in which the CU is split into multiple partitions (PU of 2N×N, N×2N, N>N, and the like) and a syntax of the prediction parameter is coded in units of partition, multiple sub-blocks are brought together into one or more sets in the sub-block prediction mode and the syntax of the prediction parameter is coded for each of the sets, and therefore, motion information of many sub-blocks can be coded using a small amount of codes.
To be more specific, the sub-block prediction parameter deriver 3037 includes at least one of a spatial-temporal sub-block predictor 30371, an affine predictor 30372, a matching motion deriver 30373, and an OBMC predictor 30374 that perform sub-block prediction in the sub-block prediction mode.
Sub-Block Prediction Mode Flag
Here, a method, in the tile decoder 2002 and the tile encoder 2012 (details will be described later), for deriving the sub-block prediction mode flag subPbMotionFlag which indicates whether a prediction mode for a certain PU is the sub-block prediction mode will be described. The tile decoder 2002 and the tile encoder 2012 derive the sub-block prediction mode flag subPbMotionFlag, based on which of a spatial sub-block prediction SSUB, a temporal sub-block prediction TSUB, an affine prediction AFFINE, and a matching motion derivation MAT described later is used. For example, in a case that a prediction mode selected for a certain PU is N (for example, N is a label indicating the selected merge candidate), the sub-block prediction mode flag subPbMotionFlag may be derived by the following expression.
subPbMotionFlag=(N==TSUB)∥(N==SSUB)∥(N==AFFINE)∥(N==MAT)
Here, ∥ represents a logical sum (this similarly applies below).
The tile decoder 2002 and the tile encoder 2012 may be configured to perform some of the spatial sub-block prediction SSUB, the temporal sub-block prediction TSUB, the affine prediction AFFINE, the matching motion derivation MAT, and the OBMC prediction OBMC. In other words, in a case that the tile decoder 2002 and the tile encoder 2012 are configured to perform the spatial sub-block prediction SSUB and the affine prediction AFFINE, the sub-block prediction mode flag subPbMotionFlag may be derived as described below.
subPbMotionFlag=(N==SSUB)∥(N==AFFINE)
The merge candidate deriver 30361 uses, without change, a motion vector and reference picture index refIdxLX of a neighboring PU already subjected to the decoding process to derive a merge candidate. The affine prediction may be used as another way to derive a merge candidate. This method is described below in detail. The merge candidate deriver 30361 may use the affine prediction for spatial merge candidate derivation process, temporal merge candidate derivation process, combined merge candidate derivation process, and zero merge candidate derivation process which are described later. Note that the affine prediction is performed in units of sub-block, and the prediction parameter is stored in the prediction parameter memory 307 for each sub-block. Alternatively, the affine prediction may be performed in units of pixel.
Spatial Merge Candidate Derivation Process
In the spatial merge candidate derivation process, the merge candidate deriver 30361 reads out the prediction parameter (prediction list utilization flag predFlagLX, motion vector mvLX, reference picture index refIdxLX) stored in the prediction parameter memory 307 according to a prescribed rule, derives a merge candidate as the read out prediction parameter, and stores the merge candidate in a merge candidate list mergeCandList[ ] (prediction vector candidate list mvpListLX[ ]). The read out prediction parameters are prediction parameters related to each of the PUs in a predefined range from the decoding target PU (for example, all or some of PUs adjoining lower left ends L and BL, upper left end AL, and upper right ends A and AR of the decoding target PU illustrated in
Temporal Merge Candidate Derivation Process
In a temporal merge derivation process, the merge candidate deriver 30361 reads out, in the reference picture illustrated in
For example, the merge candidate deriver 30361 may derive the position of the block C (xColCtr, yColCtr) and the position of the block BR (xColBr, yColBr) according to the following expression.
xColCtr=xPb+(W>>1)
yColCtr=yPb+(H>>1)
xColBr=xPb+W
yColBr=yPb+H (Expression BR0)
where, (xPb, yPb) represents the upper left coordinates of the target block, and (W, H) represents the width and height of the target block.
Note that a block X refers to a block on a reference picture including a position X, and prediction parameters (motion vector, reference picture list, or the like) of the block X indicate prediction parameters belonging to the block X.
Tile Boundary BR, BRmod
Here, the block BR, which is one of the blocks referred to as the temporal merge candidate illustrated in
xColBr=xPb+W−1
yColBr=yPb+H−1 (Expression BR1)
Furthermore, to make the position of BRmod a multiple of the M-th power of 2, a process of left shifting may be added after right shifting described below. For example, M may be preferably 2, 3, 4, or the like. In a case that this restricts the position of reference to the motion vector, the memory required to store the motion vector can be reduced.
xColBr=((xPb+W−1)>>M)<−M
yColBr=((yPb+H−1)>>M)<<M (Expression BR2)
The merge candidate deriver 30361 may derive the position of the reference block BRmod by (Expression BR1) and (Expression BR2), as in
The merge candidate deriver 30361 may derive the position of BRmod (xColBr, yColBr) by the following expressions indicating the position within the block boundary, as in
xColBr=xPb+W−1
yColBr=yPb+H (Expression BR1′)
Also in (Expression BR1′), the position may be configured as a multiple of the M-th power of 2 (position within a round block).
xColBr=((xPb+W−1)>>M)<<M
yColBr=((yPb+H)>>M)<<M (Expression BR2′)
The merge candidate deriver 30361 may derive the position of BRmod (xColBr, yColBr) by the following expressions indicating the position within the block boundary, as in
xColBr=xPb+W
yColBr=yPb+H−1 (Expression BR1″)
or
xColBr=((xPb+W)>>M)<−M
yColBr=((yPb+H−1)>>M)<<M (Expression BR2″)
Since the block outside the tile is not referred to at the position within the block boundary or the position within the round block, the block BR (or BRmod) in the lower right position can be referred to as a temporal merge candidate. For example, assuming that a function that derives TileId at a certain position (x, y) is getTileID(x, y), getTileID(xColBr, yColBr)!=getTileID(xPb, yPb) holds, which can be applied to the case that “TileId of the tile containing BR” is different from “TileId of the tile containing the target block”, but the position of BR (BRmod) may be derived according to any of the above expressions. In the case of independent_tile_flag=1, the lower right BRmod within the collocated block may be configured. For example, the merge candidate deriver 30361 may derive the block BR at a block boundary position (Expression BR0) in the case of independent_tile_flag=0, or derive the block BR at positions (Expression BR1), (Expression BR1′), and (Expression BR1″) within the block boundary in the case of independent_tile_flag=1. The round positions (Expression BR2), (Expression BR2′), and (Expression BR2″) may be used as the positions within the block boundary.
In summary, in a case that the upper left coordinates of the target tile are (xTs, yTs) and the width and height of the target tile are wT and hT, the lower right position can be derived as follows.
if ((xPb+W<xTs+wT)&&(yPb+H<yTs+hT))
xColBr=xPb+W
yColBr=yPb+H (Expression BR0)
else if (yPb+H<yTs+hT)
xColBr=xPb+W−1
yColBr=yPb+H (Expression BR1′)
else if (xPb+W<xTs+wT)
xColBr=xPb+W
yColBr=yPb+H−1 (Expression BR1″)
else
xColBr=xPb+W−1
yColBr=yPb+H−1 (Expression BR1)
For the above positions (Expression BR1), (Expression BR1′), and (Expression BR1″), the positions (Expression BR2), (Expression BR2′), and (Expression BR2″) after rounding may be used.
In this way, the lower right block position of the collocated block is configured as the position BRmod within the collocated tile illustrated in
Combined Merge Candidate Derivation Process
In the combined merge derivation process, the merge candidate deriver 30361 combines motion vectors and reference picture indices of two different derived merge candidates which are already derived and stored in the merge candidate storage 30363 as motion vectors for L0 and L1, respectively to derive a combined merge candidate, and stores the derived combined merge candidate in the merge candidate list mergeCandList[ ].
Note that in a case that the motion vector derived in the above-described spatial merge candidate derivation process, temporal merge candidate derivation process, and combined merge candidate derivation process points to even a part of the outside of the collocated tile of the tile where the target block is located, the motion vector may be clipped and corrected to point only to an inside of the collocated tile. This process requires the tile encoder 2002 and the tile decoder 2012 to select the same process.
Zero Merge Candidate Derivation Process
In the zero merge candidate derivation process, the merge candidate deriver 30361 derives a merge candidate which has a reference picture index refIdxLX of 0 and both an X component and Y component of 0 of a motion vector mvLX, and stores the derived merge candidate in the merge candidate list mergeCandList[ ].
The merge candidate derived by the merge candidate deriver 30361 is stored in the merge candidate storage 30363. The order of storing in the merge candidate list mergeCandList[ ] is {L, A, AR, BL, AL, BR/C, a combined merge candidate, and a zero merge candidate}. L, A, AR, BL, AL, BR/C are prediction parameters for the blocks at the positions illustrated in
In a case that the motion vectors stored in the merge candidate list mergeCandList[ ] which includes multiple motion vectors that refer to the padding region illustrated in
Alternatively, in a case that multiple motion vectors pointing to the padding region are stored in the merge candidate list mergeCandList[ ], the merge candidate deriver 30361 may leave a minimum motion vector among the multiple motion vectors pointing to the padding region and remove other motion vectors from the merge candidate list. A magnitude of the motion vector is calculated, for example, from a sum of absolute values of the horizontal and vertical components of the motion vector. Alternatively, the merge candidate deriver 30361 may leave a motion vector the closest to the tile boundary among the multiple motion vectors pointing to the padding region and remove the other motion vectors from the merge candidate list.
The merge candidate selection unit 30362 selects, as an inter prediction parameter for the target PU, a merge candidate assigned with an index corresponding to the merge index merge_idx input from the inter prediction parameter decoding control unit 3031, among the merge candidates stored in the merge candidate list mergeCandList[ ] of the merge candidate storage 30363. The merge candidate selection unit 30362 stores the selected merge candidate in the prediction parameter memory 307 and outputs the merge candidate to the prediction image generator 308.
Sub-Block Predictor
Next, a sub-block predictor will be described.
Time Space Sub-block Predictor 30371
The spatial-temporal sub-block predictor 30371 derives a motion vector of a sub-block obtained by splitting the target PU, from a motion vector of a PU on the reference picture (for example, the immediately preceding picture) temporally neighboring to the target PU, or a motion vector of a PU spatially neighboring to the target PU. Specifically, by scaling the motion vector of the PU on the reference picture based on the reference picture referred to by the target PU, a motion vector spMvLX[xi][yi] (xi=xPb+BW*i, yj=yPb+BH*j, i=0, 1, 2, . . . , W/BW−1, j=0, 1, 2, . . . , H/BH−1) of each sub-block in the target PU is derived (temporal sub-block prediction). Here, (xPb, yPb) represents the upper left coordinates of the target PU, W and H represent the size of the target PU, and BW and BH represent the size of the sub-block.
Additionally, by calculating a weighted average of a motion vector of a PU neighboring to the target PU in accordance with a distance from a sub-block obtained by splitting the target PU, the motion vector spMvLX[xi][yi] (xi=xPb+BW*i, yj=yPb+BH*j, i=0, 1, 2, . . . ,W/BW−1, j=0, 1, 2, . . . , H/BH−1) of each sub-block in the target PU may be derived (spatial sub-block prediction).
The temporal sub-block prediction candidate TSUB or the spatial sub-block prediction candidate SSUB is selected as one mode of the merge mode (merge candidate).
As specific spatial-temporal sub-block prediction methods, Adaptive Temporal Motion Vector Prediction (ATMVP) and Spatial-Temporal Motion Vector Prediction (STMVP) will be described.
Motion Vector Scaling
First, a method for deriving a scaling of a motion vector is described. Assuming a motion vector Mv, a picture Pic1 including a block having a motion vector Mv, a reference picture Pic2 of the motion vector Mv, a post-scaling motion vector sMv, a picture Pic3 including a block having a post-scaling motion vector sMv, and a reference picture Pic4 referred to by the post-scaling motion vector sMv, a derivative function MvScale(Mv, Pic1, Pic2, Pic3, Pic4) of sMv is represented by the following expression.
sMv2=MvScale(Mv,Pic1,Pic2,Pic3,Pic4)=Clip3(−R1,R1−1, sign(distScaleFactor*Mv)*((abs(distScaleFactor*Mv)+round1−1)>>shift1))
distScaleFactor=Clip3(−R2,R2−1,(tb*tx+round2)>>shift2)
tx=(16384+abs(td)>>1)/td
td=DiffPicOrderCnt(Pic1,Pic2)
tb=DiffPicOrderCnt(Pic3,Pic4) (Expression MVSCALE-1)
Here, round1, round2, shift1, and shift2 are rounded and shifted values for division using an inverse, and are, for example, round1=1<<(shift1-1), round2=1<<(shift2-1), shift1=8, shift2=6, and so on. DiffPicOrderCnt(Pic1, Pic2) is a function that returns a difference in time information (for example, POC) between Pic1 and Pic2. R1 and R2 restrict a range of values to perform the process with limited accuracy, and are, for example, R1=32768, R2=4096, and so on.
A scaling function MvScale(Mv, Pic1, Pic2, Pic3, Pic4) may also be the following expression.
MvScale(Mv,Pic1,Pic2,Pic3,Pic4)=Mv*DiffPicOrderCnt(Pic3,Pic4)/DiffPicOrderCnt(Pic1,Pic2) (Expression MVSCALE-2)
That is, Mv may be scaled depending on a ratio of the difference in the time information between Pic1 and Pic2 to the difference in the time information between Pic3 and Pic4.
ATMVP, Tile Boundary ATMVP
The ATMVP is a scheme in which a motion vector is derived for each sub-block of a target block based on motion vectors of spatial neighboring blocks (L, A, AR, BL, AL) of the target block of the target picture PCur illustrated in
Step 1) Initial Vector Derivation
An initial available neighboring block is determined in the order of the spatial neighboring blocks L, A, AR, BL, and AL. In a case that an available neighboring block is found, then a motion vector and reference picture included in that block are transferred to step 2 as an initial vector IMV and an initial reference picture IRef of the ATMVP. In a case that all neighboring blocks are not available (non available), the ATMVF is turned off and the process is terminated. The meaning of “ATMVP is turned off” is that the motion vector by the ATMVP is not stored in the merge candidate list.
Here, the meaning of “available neighboring block” is that, for example, the position of the neighboring block is contained in the target tile, and the neighboring block includes a motion vector.
Step 2) Initial Vector Tile Boundary Check
Whether or not the block referred to by the target block using IMV is within the collocated tile on the initial reference picture IRef is checked. In a case that this block is within the collocated tile, the IMV and the IRef are transferred to step 3 as a block level motion vector BMV and reference picture BRef, respectively, of the target block. In a case that the block is not within the collocated tile, whether or not a block that is referred to using sIMV derived from IMV using the scaling function MvScale(IMV, PCur, IRef, PCur, RefPicListX[refIdx]) is within the collocated tile is checked, on a reference picture RefPicListX[RefIdx] (RefIdx=0 . . . the number of reference pictures−1) stored in the reference picture list RefPicListX. In a case that this block is within the collocated tile, the sIMV and the RefPicListX[RefIdx] are transferred to step 3 as a block level motion vector BMV and reference picture BRef, respectively, of the target block.
Note that in a case that no such block is found in all reference pictures stored in the reference picture list, the ATMVF is turned off and the process is terminated.
Step 3) Sub-Block Motion Vector
As illustrated in
Step 4) Motion Vector Scaling
A motion vector SpMvLX[k][l] of each sub-block on the target block is derived by the scaling function MvScale( ) from the motion vector SpRefMvLX[k][l] and the reference picture SpRef[k][l] of each sub-block on the reference picture.
SpMvLX[k][l]=MvScale(SpRefMvLX[k][l],Bref,SpRef[k][l],PCur,RefPicListX[refIdx0]) (Expression ATMVP-1)
where, RefPicListX[refIdx0]) represents a sub-block level reference picture of the target block, and for example, reference picture RefPicListX[refIdxATMVP] or refIdxATMVP=0 is applied.
Note that the sub-block level reference picture of the target block may be a reference picture indicated by an index (collocated_ref_idx) used in the prediction motion vector derivation in the time direction signaled in the slice header, as illustrated in FIG. 18(c), rather than the reference picture RefPicListX[refIdx0]. In this case, the sub-block level reference picture of the target block is RefPicListX[collocated_ref_idx], and the calculation expression for the sub-block level motion vector SpMvLX[k][l] of the target block is described below.
SpMvLX[k][l]=MvScale(SpRefMvLX[k][l],Bref,SpRef[k][l],PCur,RefPicListX[collocated_ref_idx])) (Expression ATMVP-2)
Step 5) Sub-Block Vector Tile Boundary Check
In the sub-block level reference picture of the target block, whether or not the sub-block to which the target sub-block refers using SpMvLX[k][l] is within the collocated tile is checked. In a case that a destination to which a sub-block motion vector SpMvLX[k2][l2] points is not within the collocated tile in a certain sub-block (k2, l2), any of the following processes 1 (process 1A to process 1D) is performed.
[Process 1A] Tile Boundary Padding
The tile boundary padding (padding outside tile) is achieved by clipping the reference position at the positions of the boundary pixels on the top, bottom, right, and left of the tile as already described above. For example, assuming that upper left coordinates of a target sub-block relative to upper left coordinates of a picture are (xs, ys), a width and height of the target sub-block are BW and BW, respectively, upper left coordinates of a target tile in which the target sub-block is located are (xTs, yTs), a width and height of the target tile are wT and hT, respectively, and a motion vector is spMvLX[k2][l2], a sub-block level reference pixel (xRef, yRef) is derived according to the following expression.
xRef+i=Clip3(xTs,xTs+wT−1,xs+(SpMvLX[k2][l2][0]>>log 2(M))+i)
yRef+j=Clip3(yTs,yTs+hT−1,ys+(SpMvLX[k2][l2][1]>>log 2(M))+j) (Expression ATMVP-3)
[Process 1B] Tile Boundary Motion Vector Restriction (Motion Vector Restriction Outside Tile)
The sub-block motion vector SpMvLX[k2][l2] is clipped so that the sub-block level motion vector SpMvLX[k2][l2] does not refer to the outside of the tile. The tile boundary motion vector restriction is as described above.
[Process 1C] Tile Boundary Motion Vector Replacement (Replacement Outside Tile Motion Vector with Substitution)
In a case that a destination to which the sub-block motion vector SpMvLX[k2][l2] points is not within the collocated tile, the substitution motion vector SpMvLX[k3][l3] within the collocated tile is copied. For example, (k3, l3) may be a sub-block neighboring to (k2, l2) or a center of the block.
SpMvLX[k2][l2][0]=SpMvLX[k3][13][0]
SpMvLX[k2][l2][1]=SpMvLX[k3][13][1] (Expression ATMVP-4)
[Process 1D] Tile Boundary ATMVP Off (ATMVP Outside Tile Off)
In a case that the number of sub-blocks exceeds a prescribed threshold, and a destination to which the sub-block motion vector SpMvLX[k2][l2] points is not within the collocated tile for each of the sub-blocks, the ATMVP is turned off and the process is terminated. For example, the prescribed threshold may be ½ of the total number of sub-blocks within the target block.
Note that the process 1 requires the tile encoder 2002 and the tile decoder 2012 to select the same process.
Step 6) The ATMVP is stored in the merge candidate list. An example of the order of the merge candidates stored in the merge candidate list is illustrated in
In a case that the ATMVP is selected as a merge candidate, an image on a reference picture RefPicListX[refIdxATMVP] shifted from each sub-block of the target block by SpMvLX[k][l] and sets the read out image as a prediction image, as illustrated in
The merge candidate list derivation process for the ATMVP described in step 1) to step 6) above will be described with reference to the flowchart in
The spatial-temporal sub-block predictor 30371 searches five neighboring blocks of the target block (S2301).
The spatial-temporal sub-block predictor 30371 determines the presence or absence of the initial available neighboring block, and proceeds to S2303 in a case that there is an available neighboring block or proceeds to S2311 in a case that there is no available neighboring block (S2302).
The spatial-temporal sub-block predictor 30371 configures the motion vector and reference picture included in the available neighboring block as the initial vector IMV and initial reference picture IRef of the target block (S2303).
The spatial-temporal sub-block predictor 30371 searches the block based motion vector BMV and reference picture BRef of the target block, based on the initial vector IMV and initial reference picture IRef of the target block (S2304).
The spatial-temporal sub-block predictor 30371 determines the presence or absence of the block-based motion vector BMV with the reference block pointing to the inside of the collocated tile, and in a case that the BMV is present, acquires the BRef and proceeds to S2306, or in a case that the BMV is not present, proceeds to S2311 (S2305).
The spatial-temporal sub-block predictor 30371 acquires the sub-block based motion vector SpRefMvLX[k][l] and reference picture SpRef[k][l] of the collocated block using the block based motion vector BMV and reference picture BRef of the target block (S2306).
The spatial-temporal sub-block predictor 30371 uses the motion vector SpRefMvLX[k][l] and the reference picture SpRef to derive the sub-block based motion vector spMvLX[k][l] of the target block by scaling in a case that the reference picture is configured as RefPicListX[refIdxATMVP] (S2307).
The spatial-temporal sub-block predictor 30371 determines whether or not all blocks to each of which the motion vector spMvLX[k][l] points refer to the inside of the collocated tile on the reference picture RefPicListX[refIdxATMVP]. In a case that all blocks refer only to the inside of the collocated tile, the process proceeds to S2310, otherwise proceeds to S2309 (S2308).
The spatial-temporal sub-block predictor 30371, in a case that at least a part of the block shifted by the motion vector spMvLX[k][l] is outside the collocated tile, copies a sub-block level motion vector of a neighboring sub-block having a sub-block level motion vector of which the sub-block after the shift is within the collocated tile (S2309).
The spatial-temporal sub-block predictor 30371 stores an ATMVP motion vector in the merge candidate list mergeCandList[ ] illustrated in
The spatial-temporal sub-block predictor 30371 does not store an ATMVP motion vector in the merge candidate list mergeCandList[ ] (S2311).
Note that, in addition to copying the motion vector of the neighboring block, the process in S2309 may be the padding process on the tile boundary of the reference picture or the clipping process on the sub-block level motion vector of the target block as described in 5). In a case that the number of sub-blocks that are not available is greater than a prescribed threshold, the ATMVP may be turned off and the process may proceed to S2311.
The above process derives the merge candidate list for the ATMVP.
By deriving the ATMVP motion vector to generate the prediction image in this manner, the reference pixel is replaced by the pixel value in the collocated tile, even in a case that the motion vector points to the outside of the collocated tile in the inter prediction, and therefore, the tile can be independently inter-predicted. Thus, even in a case that some of the reference pixels are not included in the collocated tile, the ATMVP can be selected as one of the merge candidates. Then, in a case that the performance is higher than that of a merge candidate other than the ATMVP, the ATMVP can be used to generate the prediction image, so the coding efficiency can be increased.
STMVP
The STMVP is a scheme in which a motion vector is derived for each sub-block of a target block, based on motion vectors of spatial neighboring blocks (a, b, c, d, . . . ) of the target block of the target picture PCur illustrated in
Step 1) A target block is split into sub-blocks, and an initial available block is determined from an upper neighboring block of the sub-block A in the right direction. In a case that an available neighboring block is found, then a motion vector and reference picture included in the initial block are taken as a STMVP upper vector mvA_above and reference picture RefA_above, and a count cnt=1 is set. In a case that no available neighboring block is found, the count cnt=0 is set.
Step 2) An initial available block is determined from a left neighboring block b of the sub-block A in the downward direction. In a case that an available neighboring block is found, then a motion vector and reference picture included in the initial block are taken as a left vector mvA_left and reference picture RefA_left, and the count cnt is incremented by one. In a case that no available neighboring block is found, the count cnt is not updated.
Step 3) In the collocated block A′ of the sub-block A, whether or not the lower right position region A′br and a region A′c are available is checked in this order. In a case that an available region is found, then an initial motion vector and reference picture included in that block are taken as a collocated vector mvA_col and reference picture RefA_col, and the count is incremented by one. In a case that no available block is found, the count cnt is not updated.
Step 4) In a case of cnt=0 (there is no available motion vector), the STMVP is turned off and the process is terminated.
Step 5) In a case that ctn is not zero, the time information of the target picture PCur and the reference picture RefPicListX[collocated_ref_idx] of the target block is used to scale the available motion vectors found in step 1) to step 3). The scaled motion vectors are represented by smvA_above, smvA_left, and smvA_col.
smvA_above=MvScale(mvA_above,PCur,RefA_above,PCur,RefPicListX[collocated_ref_idx])
smvA_left=MvScale(mvA_left,PCur,RefA_left,PCur,RefPicListX[collocated_ref_idx])
smvA_col=MvScale(mvA_col,PCur,RefA_col,PCur,RefPicListX[collocated_ref_idx]) (Expression STMVP-1)
The unavailable motion vector is set to 0.
Here, the scaling function MvScale(Mv, Pic1, Pic2, Pic3, Pic4) is a function for scaling the motion vector My as described above.
Step 6) An average of smvA_above, smvA_left, and smvA_col is calculated and set as a motion vector spMvLX[A] of the sub-block A. The reference picture of the sub-block A is RefPicListX[collocated_ref_idx].
spMvLX[A]=(smvA_above+smvA_left+smvA_col)/cnt (Expression STMVP-2)
For integer computation, for example, the derivation may be as follows. In the case of cnt==2, assuming two vectors mvA_cnt0 and mvA_cnt1 in this order, the derivation may be according to the following expression.
spMvLX[A]=(smvA_cnt0+smvA_cnt1)>>1
For cnt==3, the derivation may be according to the following expression.
spMvLX[A]=(5*smvA_above+5*smvA_left+6*smvA_col)>>4
Step 7) Checked is whether or not a block at a position obtained by shifting the collocated block by spMvLX[A] is within the collocated tile, in the reference picture RefPicListX[collocated_ref_idx]. In a case that a part of or all of the block is not within the collocated tile, any of the following processes 2 (process 2A to process 2D) is performed.
[Process 2A] Tile Boundary Padding
The tile boundary padding (padding outside tile) is achieved by clipping the reference position at the positions of the boundary pixels on the top, bottom, right, and left of the tile as already described above. For example, assuming that upper left coordinates of the sub-block A relative to upper left coordinates of the picture are (xs, ys), a width and height of the sub-block A are BW and BH, respectively, upper left coordinates of a target tile in which the sub-block A is located are (xTs, yTs), and a width and height of the target tile are wT and hT, respectively, a reference pixel (xRef, yRef) of the sub-block A is derived according to the following expression.
xRef+i=Clip3(xTs,xTs+wT−1,xs+(SpMvLX[A][0]>>log 2(M))+i)
yRef+j=Clip3(yTs,yTs+hT−1,ys+(SpMvLX[A][1]>>log 2(M))+j) (Expression STMVP-3)
Note that the process 2 requires the tile encoder 2002 and the tile decoder 2012 to select the same process.
[Process 2B] Tile Boundary Motion Vector Restriction
The sub-block level motion vector spMvLX[A] is clipped so that the sub-block level motion vector spMvLX[A] does not refer to the outside of the tile. The tile boundary motion vector restriction is as described above.
[Process 2C] Tile Boundary Motion Vector Replacement (Replacement by Substitution Motion Vector)
In a case that a destination to which the sub-block motion vector SpMvLX[k2][l2] points is not within the collocated tile, the substitution motion vector SpMvLX[k3][l3] within the collocated tile is copied. For example, (k3, l3) may be a sub-block neighboring to (k2, l2) or a center of the block.
SpMvLX[k2][l2][0]=SpMvLX[k3][13][0]
SpMvLX[k2][l2][1]=SpMvLX[k3][13][1] (Expression STMVP-4)
[Process 2D] Tile Boundary STMVP Off
In a case that the number of sub-blocks exceeds a prescribed threshold, for each of which sub-blocks a destination to which the sub-block motion vector SpMvLX[k2][l2] points is not within the collocated tile, the STMVP is turned off and the process is terminated. For example, the prescribed threshold may be ½ of the total number of sub-blocks within the target block.
Step 8) The processes in steps 1) to 7) described above are performed on each sub-block of the target block, such as the sub-blocks B, C, and D, and the motion vectors of the sub-blocks are determined as in
Step 9) The STMVP motion vector is stored in the merge candidate list. An example of the order of the merge candidates stored in the merge candidate list is illustrated in
In a case that the STMVP is selected as a merge candidate, an image on a reference picture RefPicListX[collocated_ref_idx] shifted from each sub-block of the target block by the motion vector is read and sets the read out image as a prediction image.
The merge candidate list derivation process for the STMVP described in step 1) to step 9) will be described with reference to the flowchart in
The spatial-temporal sub-block predictor 30371 splits the target block into sub-blocks (S2601).
The spatial-temporal sub-block predictor 30371 searches upper and left neighboring blocks of the sub-block in the time direction (S2602).
The spatial-temporal sub-block predictor 30371 determines the presence or absence of the available neighboring block, and proceeds to S2604 in a case that there is an available neighboring block or proceeds to S2610 in a case that there is no available neighboring block (S2603).
The spatial-temporal sub-block predictor 30371 scales the motion vector included in the available neighboring block in accordance with temporal distances between the target picture and the reference pictures of the multiple neighboring blocks (S2604).
The spatial-temporal sub-block predictor 30371 calculates an average of the scaled motion vectors and sets the calculated average as a motion vector spMvLX[ ] of the target sub-block (S2605).
The spatial-temporal sub-block predictor 30371 determines whether or not a block obtained by shifting the collocated sub-block on the reference picture by a motion vector spMvLX[ ] is within the collocated tile, and proceeds to S2608 in a case that the block is within the collocated tile, or proceeds to S2607 in a case that even a part of the block is not within the collocated tile (S2606).
The spatial-temporal sub-block predictor 30371 clips the motion vector spMvLX[ ] in the case that the block shifted by the motion vector spMvLX[ ] is outside of the collocated tile (S2607).
The spatial-temporal sub-block predictor 30371 checks whether or not the sub-block under the process is the last sub-block of the target block (S2608), and proceeds to S2610 in the case of the last sub-block, and otherwise, changes a processing target to the next sub-block and proceeds to S2602 (S2609), and then, repeatedly performs S2602 to S2608.
The spatial-temporal sub-block predictor 30371 stores an STMVP motion vector in the merge candidate list mergeCandList[ ] illustrated in
The spatial-temporal sub-block predictor 30371, in the case of no available motion vector, does not store an STMVP motion vector in the merge candidate list mergeCandList[ ] and terminates the process (S2611).
Note that, in addition to the clipping process on the motion vector of the target sub-block, the process in S2607 may be the padding process on the tile boundary of the reference picture as described in step 7).
The above process derives the merge candidate list for the STMVP.
By deriving the STMVP motion vector to generate the prediction image in this manner, the reference pixel is replaced by the pixel value in the collocated tile, even in a case that the motion vector points to the outside of the collocated tile in the inter prediction, and therefore, the tile can be independently inter-predicted. Thus, even in a case that some of the reference pixels are not included in the collocated tile, the STMVP can be selected as one of the merge candidates. Then, in a case that the performance is higher than that of a merge candidate other than the STMVP, the STMVP can be used to generate the prediction image, so the coding efficiency can be increased.
Affine Predictor
The affine predictors 30372 and 30321 derive affine prediction parameters for the target PU. In the present embodiment, motion vectors (mv0_x, mv0_y) (mv1_x, mv1_y) of two control points (V0, V1) of the target PU are derived as the affine prediction parameters. Specifically, the motion vector of each control point may be derived by prediction from a motion vector of a neighboring PU of the target PU (affine predictor 30372), or the motion vector of each control point may be derived from a sum of a prediction vector derived as the motion vector of the control point and a differential vector derived from the coded data (affine predictor 30321).
Sub-Block Motion Vector Derivation Process
Hereinafter, as an example of a further specific embodiment configuration, a flow of the process in which the affine predictors 30372 and 30321 derive the motion vector mvLX of each sub-block using the affine prediction will be described in steps. The process in which the affine predictors 30372 and 30321 derive the motion vector mvLX of the target sub-block using the affine prediction includes three steps (STEP 1) to (STEP 3) described below.
(STEP 1) Derivation of Control Point Vector
In this step, a motion vector of each of representative points of the target block (here, a point V0 at the upper left of the block and a point V1 at the upper right of the block) are derived as two control points used in the affine prediction for the affine predictors 30372 and 30321 to derive candidates. Note that a point on the target block is used for the representative point of the block. In the present specification, the representative point of the block used for the control point of the affine prediction is referred to as a “block control point”.
First, processes in the AMVP mode and the merge mode (STEP 1) will be described with reference to
Derivation of Motion Vector of Control Point in AMVP Mode
The affine predictor 30321 adds prediction vectors mvpVNLX and difference vectors of two control points (V0, V1) to derive a motion vector mvN=(mvN_x, mvN_y). N represents the control point.
More specifically, the affine predictor 30321 derives the prediction vector candidate of the control point VN (N=0 . . . 1), and stores the derived candidate in a prediction vector candidate list mvpListVNLX[ ]. Moreover, the affine predictor 30321 derives a motion vector (mvN_x, mvN_y) of the control point VN from a prediction vector index mvpVN_LX_idx of the point VN from the coded data, and a difference vector mvdVNLX according to the following expression.
mvN_x=mvNLX[0]=mvpListVNLX[mvpVN_LX_idx][0]+mvdVNLX[0]
mvN__y=mvNLX[1]=mvpListVNLX[mvpVN_LX_idx][1]+mvdVNLX[1] (Expression AFFIN−1)
As illustrated in
For example, as illustrated in
Additionally, as illustrated in
Derivation of Motion Vectors of Control Points in Merge Mode
The affine predictor 30372 refers to the prediction parameter memory 307, and checks whether or not affine prediction is used for blocks including L, A, AR, LB, and AL as illustrated in
The affine predictor 30372 derives motion vectors (mvN_x, mvN_y) (N=0 . . . 1) of control points (for example, V0 and V1), based on motion vectors (mvvN_x, mvvN_y) (N=0 . . . 2) of a block including three points (a point v0, a point v1, and a point v2 of
mv0_x=mv0LX[0]=mvv0_x+(mvv1__x−mvv0_x)/w*w−(mvv2_y−mvv0_y)/h*(h−H)
mv0_y=mv0LX[1]=mvv0_y+(mvv2_y−mvv0_y)/h*w+(mvv1_x−mvv0_x)/w*(h−H)
mv1_x=mv1LX[0]=mvv0_x+(mvv1_x−mvv0_x)/w*(w+W)−(mvv2_y−mvv0_y)/h*(h−H)
mv1_y=mv1LX[1]=mvv0_y+(mvv2_y−mvv0_y)/h*(w+W)+(mvv1_x−mvv0_x)/w*(h−H) (Expression AFFINE-2)
In a case that reference pictures of the derived motion vectors mv0 and mv1 are different from a reference picture of the target block, scaling may be performed based on an inter-picture distance between each of the reference pictures and the target picture.
Next, in a case that the motion vectors (mvN_x, mvN_y) (N=0 . . . 1) of the control points V0 and V1 that are derived in (STEP 1) by the affine predictors 30372 and 30321 point to the outside of the tile (in the reference picture, a part or all of blocks at positions shifted from the collocated block by mvN are not present within the collocated tile), any one of Process 4 (Process 4A to Process 4D) described below is performed.
[Process 4A] Tile Boundary Padding
A tile boundary padding process is performed in STEP 3. In this case, an additional process is not particularly performed in (STEP 1). The tile boundary padding (out-of-tile padding) is, as described above, implemented by clipping a reference position at positions of upper, lower, right, and left boundary pixels of the tile. For example, a sub-block level reference pixel (xRef, yRef) is derived according to the following expression:
xRef+i=Clip3(xTs,xTs+wT−1,xs+(SpMvLX[k2][l2][0]>>log 2(M))+i)
yRef+j=Clip3(yTs,yTs+hT−1,ys+(SpMvLX[k2][l2][1]>>log 2(M))+j) (Expression AFFINE-3)
where (xs, ys) represents upper left coordinates of the target sub-block with respect to upper left coordinates of the picture, W and H respectively represent width and height of the target block, (xTs, yTs) represents upper left coordinates of the target tile at which the target sub-block is located, and wT and hT respectively represent width and height of the target tile.
[Process 4B] Tile Boundary Motion Vector Restriction
The sub-block motion vector spMvLX[k2][l2] is clipped so that the sub-block level motion vector spMvLX[k2][l2] does not refer to the outside of the tile. The tile boundary motion vector restriction is as described above.
[Process 4C] Tile Boundary Motion Vector Replacement (Alternative Motion Vector Replacement)
A motion vector is copied from a neighboring sub-block that has a motion vector pointing to the inside of the collocated tile.
[Process 4D] Turn Off Tile Boundary Affine
In a case that it is determined that the outside of the collocated tile is referred to, affine_flag=0 is set (affine prediction is not performed). In this case, the above process is not performed.
Note that, in Process 4, the affine predictor of the tile encoder 2002 and the affine predictor of the tile decoder 2012 need to select the same process.
(STEP 2) Derivation of Sub-Block Vector
This is a step in which the affine predictors 30372 and 30321 derive a motion vector of each sub-block included in the target block, based on the motion vectors of the block control points (control points V0 and V1, or V0 and V2), which are representative points of the target block derived in (STEP 1). In (STEP 1) and (STEP 2), a motion vector spMvLX of each sub-block is derived. Note that, although the following description concerns an example of the control points V0 and V1, a motion vector of each sub-block can also be derived using the control points V0 and V2 through a similar process, only by replacing the motion vector of V1 with the motion vector of V2.
Based on the motion vectors (mv0_x, mv0_y) and (mv1_x, mv1_y) of the control points V0 and V1, the affine predictors 30372 and 30321 derive a motion vector spMvLX[xi][yi] (xi=xb+BW*i, yj=yb+BH*j, i=0, 1, 2, . . . , W/BW−1, j=0, 1, 2, . . . , H/BH−1) of each sub-block in the target PU, according to the following expression:
spMvLX[xi][yi][0]=mv0_x+(mv1_x−mv0_x)/W*(xi+BW/2)−(mv1_y−mv0_y)/W*(yi+BH/2)
spMvLX[xi][yi][1]=mv0_y+(mv1_y−mv0_y)/W*(xi+BW/2)+(mv1_x−mv0_x)/W*(yi+BH/2) (Expression AFFINE-4)
where xb and yb represent upper left coordinates of the target PU, W and H respectively represent width and height of the target block, and BW and BH respectively represent width and height of the sub-block.
Points of a sub-block position (i, j) and sub-block coordinates (xi, yj) each correspond to an intersection between the broken line in parallel with the x axis and the broken line in parallel with the y axis of
(STEP 3) Sub-Block Motion Compensation
This is a step in which the motion compensation unit 3091 performs motion compensation for each sub-block in a case of affine_flag=1, based on the prediction list use flag predFlagLX, the reference picture index refIdxLX, and the motion vectors spMvLX of the sub-blocks derived in (STEP 2), which are input from the inter prediction parameter decoder 303. Specifically, a block located at the position shifted by the motion vector spMvLX from the position of the target sub-block on the reference picture indicated by the reference picture index refIdxLX is read from the reference picture memory 306, and is then filtered, and a motion compensation image PredLX is thereby generated.
In a case that the motion vectors of the sub-blocks derived in (STEP 2) point to the outside of the tile, the tile boundary is padded to read pixels.
Note that, in a case that there is affine_flag notified from the tile encoder 2002, the tile decoder 2012 may perform the above process only in a case of affine_flag=1.
The affine predictors 30372 and 30321 derive motion vectors of control points (S3101).
Next, the affine predictors 30372 and 30321 determine whether or not the derived motion vectors of the control points point to the outside of the tile (S3102). In a case that the motion vectors do not point to the outside of the tile (N in S3102), the process proceeds to S3104. In a case that at least a part of the motion vectors points to the outside of the tile (Y in S3102), the process proceeds to S3103.
In a case that at least a part of the motion vectors points to the outside of the tile, the affine predictors 30372 and 30321 perform any one of Process 4 described above; that is, for example, clip the motion vectors, and make a modification so that the motion vectors point to the inside of the tile.
S3101 to S3103 are a process corresponding to (STEP 1) described above.
The affine predictors 30372 and 30321 derive a motion vector of each sub-block, based on the derived motion vectors of the control points (S3104). S3104 is a process corresponding to (STEP 2) described above.
The motion compensation unit 3091 determines whether or not affine_flag is 1 (affine_flag=1) (S3105). In a case that affine_flag is not 1 (N in S3105), the motion compensation unit 3091 does not perform affine prediction, and ends the affine prediction process. In a case that affine_flag is 1 (Y in S3105), the process proceeds to S3106.
The motion compensation unit 3091 determines whether or not the motion vectors of the sub-blocks point to the outside of the tile (3106). In a case that the motion vectors do not point to the outside of the tile (N in S3106), the process proceeds to S3108. In a case that at least a part of the motion vectors points to the outside of the tile (Y in S3106), the process proceeds to S3107.
In a case that at least a part of the motion vectors of the sub-blocks points to the outside of the tile, the motion compensation unit 3091 pads the tile boundary (S3107).
The motion compensation unit 3091 generates a motion compensation image by means of affine prediction, by using the motion vectors of the sub-blocks (S3108).
S3105 to S3108 are a process corresponding to (STEP 3) described above.
The affine predictor 30321 determines whether or not the upper side of the target block touches the tile boundary (S3110). In a case of touching the upper boundary of the tile (Y in S3110), the process proceeds to S3111, and the control points are configured to V0 and V2 (S3111). Otherwise (N in S3110), the process proceeds to S3112, and the control points are configured to V0 and V1 (S3112).
In affine prediction, even in a case that a neighboring block is located outside of the tile or in a case that the motion vectors point to the outside of the tile, the reference pixel can be replaced with a pixel value within the tile, by configuring the control points, deriving motion vectors for affine prediction, and then generating a prediction image as described above. As a result, decrease in the frequency of using the affine prediction process can be prevented, and inter prediction can be independently performed on the tiles. Therefore, coding efficiency can be enhanced.
Matching Motion Deriver 30373
The matching motion deriver 30373 performs a matching process of any one of bilateral matching and template matching, and thereby derives a motion vector spMvLX of a block or a sub-block constituting a PU.
Based on the assumption that an object moves at a constant speed, the matching motion deriver 30373 derives a motion vector by matching of regions of multiple reference pictures. In bilateral matching, based on the assumption that a certain object passes a certain region of a reference picture A, a target PU of a target picture Cur_Pic, and a certain region of a reference picture B at a constant speed, a motion vector of the target PU is derived by matching between the reference pictures A and B. In template matching, based on the assumption that a motion vector of a neighboring region of a target PU and a motion vector of the target PU are equal, a motion vector is derived by matching of a neighboring region Temp_Cur (template) of the target PU and a neighboring region Temp_L0 of a reference block on a reference picture. The matching motion deriver splits the target PU into multiple sub-blocks, and performs bilateral matching or template matching (described later) for each of the split sub-blocks, and thereby derives a motion vector spMvLX[xi][yi] (xi=xPb+BW*i, yj=yPb+BH*j, i=0, 1, 2, . . . , W/BW−1, j=0, 1, 2, . . . , H/BH−1) of the sub-block.
As illustrated in
(xPos0,yPos0)=(xCur+mv0[0],yCur+mv0[1]) (Expression FRUC-1)
where (xCur, yCur) represents coordinates of the target block Cur_block. For example, Block_B is, for example, a region within a reference picture Ref1 (referred to as a reference picture B) that is indicated by the reference picture index refIdxL1, and that has upper left coordinates (xPos1, yPos1) that are determined according to:
(xPos1,yPos1)=(xCur+mv1[0],xCur+mv1[1])=(xCur−mv0[0]*DiffPicOrderCnt(Cur_Pic,Ref1)/DiffPicOrderCnt(Cur_Pic,Ref0),yCur−mv0[1]*DiffPicOrderCnt(Cur_Pic,Ref1)/DiffPicOrderCnt(Cur_Pic,Ref0)) (Expression FRUC-2)
where, as illustrated in
Next, (mv0[0], mv0[1]) is determined so that a matching cost between Block_A and Block_B has a minimum value. (mv0[0], mv0[1]) derived in this manner is used as the motion vector assigned for the target block. Based on the motion vector assigned for the target block, a motion vector spMVL0 is derived for each sub-block that is obtained by splitting the target block.
In contrast,
As illustrated in
More specifically, a reference block Block_A is determined. For example, the reference block Block_A is a region within a reference picture Ref0 (referred to as a reference picture A) that is indicated by the reference picture index refIdxL0, and that has upper left coordinates (xPos0, yPos0) that are determined according to:
(xPos0,yPos0)=(xCur+mv0[0],yCur+mv0[1]) (Expression FRUC-3)
where (xCur, yCur) represents upper left coordinates of the target block Cur_block.
Next, a neighboring template region Temp_Cur of the target block Cur_block in the target picture Cur_Pic and a neighboring template region Temp_L0 of Block_A in the reference picture A are configured. In the example illustrated in
Next, (mv0[0], mv0[1]) that leads to the minimum matching cost between Temp_Cur and Temp_L0 is determined, and determined (mv0[0], mv0[1]) is used as the motion vector assigned for the target block. Based on the motion vector assigned for the target block, a motion vector spMvL0 is derived for each sub-block that is obtained by splitting the target block.
Also in template matching, two reference pictures Ref0 and Ref1 may be processed. In this case, matching with the reference picture Ref0 and matching with the reference picture Ref1 described above are sequentially performed. A reference block Block_B is determined. The reference block Block_B is the region within a reference picture Ref1 (referred to as a reference picture B) that is indicated by the reference picture index refIdxL1, and that has upper left coordinates (xPos1, yPos1) that are determined according to:
(xPos1,yPos1)=(xCur+mv1[0],yCur+mv1[1]) (Expression FRUC-4).
Then, neighboring template regions Temp_L1 of Block_B in the reference picture B are configured. Finally, (mv1[0], mv1[1]) that leads to the minimum matching cost between Temp_Cur and Temp_L1 is determined, and determined (mv1[0], mv1[1]) is used as the motion vector assigned for the target block. Based on the motion vector assigned for the target block, a motion vector spMvL1 is derived for each sub-block that is obtained by splitting the target block.
Motion Vector Derivation Process according to Matching Process
The flow of a motion vector derivation (pattern matched vector derivation) process in a matching mode will be described with reference to the flowchart of
The process illustrated in
Note that S3201 to S3205, out of the steps illustrated in
S3206 and S3207 correspond to a sub-block search performed at the sub-block level. Specifically, a motion vector is derived for each sub-block that constitutes a block, by means of pattern matching.
First, in S3201, the matching motion deriver 30373 configures block-level initial vector candidates of a target block. The initial vector candidates are motion vectors of neighboring blocks, such as an AMVP candidate and a merge candidate of the target block.
Next, in S3202, the matching motion deriver 30373 searches for a vector that leads to the minimum matching cost among the initial vector candidates configured in the above, and uses the searched vector as an initial vector to be the basis for a vector search. For example, the matching cost is expressed as in the following expression:
SAD=ΣΣ abs(Block_A[x][y]−Block_B[x][y]) (Expression FRUC-5)
where ΣΣ represents a sum with respect to x and y, and Block_A[ ][ ] and Block_B[ ][ ] respectively represent a block whose upper left coordinates are expressed by (xPos0, yPos0) and (xPos1, yPos1) of (Expression FRUC-1) and (Expression FRUC-2). Each of the initial vector candidates is substituted into (mv0[0], mv0[1]). Then, a vector that leads to the minimum matching cost is again set to (mv0[0], mv0[1]).
Next, in S3203, the matching motion deriver 30373 determines whether or not the initial vector calculated in S3202 points to the outside of the tile (in the reference picture, a part or all of blocks at positions shifted from the collocated block by mvN (N=0 . . . 1) are not present within the collocated tile). In a case that the initial vector does not point to the outside of the tile (N in S3203), the process proceeds to S3205. In a case that at least a part of the initial vector points to the outside of the tile (Y in S3203), the process proceeds to S3204.
In S3204, the matching motion deriver 30373 performs any one of Processes 5 (Process 5A to Process 5C) described below.
[Process 5A] Tile Boundary Padding
The motion compensation unit 3091 performs tile boundary padding.
Clipping is performed so that the pixel pointed by the initial vector (mv0[0], mv0[1]) does not refer to the outside of the tile. A reference pixel (xRef, yRef) of the sub-block is derived according to the following expression:
xRef+i=Clip3(xTs,xTs+wT−1,xs+(mv0[0]>>log 2(M))+i)
yRef+j=Clip3(yTs,yTs+hT−1,ys+(mv1[1]>>log 2(M))+j) (Expression FRUC-6)
where (xs, ys) represents upper left coordinates of the target block with respect to upper left coordinates of the picture, W and H respectively represent width and height of the target block, (xTs, yTs) represents upper left coordinates of the target tile at which the target block is located, and wT and hT respectively represent width and height of the target tile.
[Process 5B] Tile Boundary Motion Vector Restriction
The initial vector mv0 is clipped so that the motion vector mv0 of the initial vector does not refer to the outside of the tile. The tile boundary motion vector restriction is as described above.
[Process 5C] Tile Boundary Motion Vector Replacement (Alternative Motion Vector Replacement)
In a case that a target pointed by the motion vector mv0 is not present within the collocated tile, an alternative motion vector present within the collocated tile is copied.
[Process 5D] Turn Off Tile Boundary Bilateral Matching
In a case that it is determined that the outside of the collocated tile is referred to, BM_flag indicating on/off of bilateral matching is set to 0, and bilateral matching is not performed (the process proceeds to “end”).
Note that, in Process 5, the tile encoder 2002 and the tile decoder 2012 need to select the same process.
In S53205, the matching motion deriver 30373 performs a block-level local search of the target block. In the local search, a local region around the initial vector derived in S3202 or S3204 (for example, a region±D pixels around the initial vector) is further searched for a vector that leads to the minimum matching cost, and the searched vector is used as the final motion vector of the target block.
Subsequently, the following process is performed on each sub-block included in the target block (S3206 and S3207).
In S3206, the matching motion deriver 30373 derives an initial vector of each sub-block of the target block (initial vector search). Initial vector candidates of the sub-block are the block-level motion vector derived in S3205, a motion vector of a neighboring block of the sub-block in the spatial-temporal direction, and an ATMVP or STMVP vector of the sub-block, for example. Among these candidate vectors, a vector that leads to the minimum matching cost is used as the initial vector of the sub-block. Note that the vector candidates used for the initial vector search of the sub-block are not limited to the vectors described above.
Next, in S3207, the matching motion deriver 30373 performs a step search or the like (local search) in a local region around the initial vector of the sub-block selected in S3206 (for example, a region±D pixels around the initial vector). Then, matching costs of the vector candidates near the initial vector of the sub-block are derived, and a vector that leads to the minimum matching cost is thereby derived as the motion vector of the sub-block.
After the process for all the sub-blocks included in the target block completes, the pattern matched vector derivation process of bilateral matching ends.
Next, a pattern matched vector derivation process of template matching will be described with reference to
First, in S3211, the matching motion deriver 30373 determines whether or not a template Temp_Cur of a target block (both an upper neighboring region and a left neighboring region of the target block) is present within the tile. In a case of presence within the tile (Y in S3211), as illustrated in
[Process 6A] Tile Boundary Padding
The motion compensation unit 3091 performs tile boundary padding.
[Process 6B] Tile Boundary Motion Vector Restriction
The motion vector is clipped so that the motion vector does not refer to the outside of the tile. The tile boundary motion vector restriction is as described above.
[Process 6C] Tile Boundary Motion Vector Replacement (Alternative Motion Vector Replacement)
In a case that a target pointed by the sub-block motion vector is not present within the collocated tile, an alternative motion vector present within the collocated tile is copied.
[Process 6D] Turn Off Template Matching
In a case that it is determined that the outside of the collocated tile is referred to, TM_flag indicating on/off of template matching is set to 0, and template matching is not performed (the process proceeds to “end”).
[Process 6E] In a case that either one of the upper neighboring region and the left neighboring region is present within the tile, the neighboring region is set as the template.
Note that, in Process 6, the tile encoder 2002 and the tile decoder 2012 need to select the same process.
Next, in S3201, the matching motion deriver 30373 configures block-level initial vector candidates of the target block. The process of S3201 is the same as the process of S3201 of
Next, in S3202, the matching motion deriver 30373 searches for a vector that leads to the minimum matching cost among the initial vector candidates configured in the above, and uses the searched vector as an initial vector to be the basis for a vector search. For example, the matching cost is expressed as in the following expression:
SAD=ΣΣ abs(Temp_Cur[x][y]−Temp_L0[x][y]) (Expression FRUC-7)
where ΣΣ represents a sum with respect to x and y, and Temp_L0[ ][ ] represents a template of the target block illustrated in
The process of S3203 and S3204 is the same process as S3203 and S3204 of
In S3205, the matching motion deriver 30373 performs a block-level local search of the target block. In the local search, a local region around the initial vector derived in S3202 or S3204 (for example, a region±D pixels around the initial vector) is further searched for a vector that leads to the minimum matching cost, and the searched vector is used as the final motion vector of the target block.
Subsequently, the following process is performed on each sub-block included in the target block (S3214 to S3207).
In S3214, as illustrated in
In S3206, the matching motion deriver 30373 derives an initial vector of each sub-block of the target block (initial vector search). Initial vector candidates of the sub-block are the block-level motion vector derived in S3205, a motion vector of a neighboring block of the sub-block in the spatial-temporal direction, and an ATMVP or STMVP vector of the sub-block, for example. Among these candidate vectors, a vector that leads to the minimum matching cost is used as the initial vector of the sub-block. Note that the vector candidates used for the initial vector search of the sub-block are not limited to the vectors described above.
Next, in S3207, the matching motion deriver 30373 performs a step search (local search) around the initial vector of the sub-block selected in S3206. Then, matching costs of the vector candidates in the local region around the initial vector of the sub-block (for example, within a search range around the initial vector (a region±D pixels)) are derived, and a vector that leads to the minimum matching cost is thereby derived as the motion vector of the sub-block. Here, in a case that a vector candidate coincides with the search range around the initial vector (or outside of the search range), the matching motion deriver 30373 does not search the vector candidate.
After the process for all the sub-blocks included in the target block completes, the pattern matched vector derivation process of template matching ends.
Although the above describes a case that the reference picture is Ref0, template matching can also be performed through the same process as above even in a case that the reference picture is Ref1. Furthermore, in a case that two reference pictures are used, the motion compensation unit 3091 performs a bi-prediction process by using two derived motion vectors.
fruc_merge_idx output to the motion compensation unit 3091 is derived according to the following expression:
fruc_merge_idx=fruc_merge_idx&BM_flag&(TM_flag<<1) (Expression FRUC-8)
Note that, in a case that fruc_merge_idx is notified by the tile decoder 2012, BM_flag and TM_flag are derived before the pattern matched vector derivation process, and only a matching process with a true flag value may be performed.
BM_flag=fruc_merge_idx&1
TM_flag=(fruc_merge_idx&10)>>1 (Expression FRUC-9)
Note that, in a case that template matching is turned off because the template is located outside of the tile, there are two options of fruc_merge_idx=0 (no matching process) and fruc_merge_idx=1 (bilateral matching), and thus fruc_merge_idx can be expressed with 1 bit.
Tile Boundary Search Range
In a case that independent coding and decoding of a tile is performed (in a case that independent_tile_flag is 1), a search range D may be configured so that pixels outside of the collocated tile are not referred to in the motion vector search process. For example, the search range D in the bilateral matching process and the template matching process may be configured in accordance with the position and the size of the target block, or with the position and the size of the target sub-block.
Specifically, as the range allowing reference only to pixels within the collocated tile, the matching motion deriver 30373 derives a search range D1x located in the left direction with respect to the target block, a search range D2x located in the right direction with respect to the target block, a search range D1y located in the upper direction with respect to the target block, and a search range D2y located in the lower direction with respect to the target block, illustrated in
D1x=xPosX+mvX[0]−xTs (Expression FRUC-11)
D2x=xTS+wT−(xPosX+mvX[0]+W)
D1y=yPosX+mvX[1]−yTS
D2y=yTS+hT−(yPosX+mvX[1]+H)
As the search range D of the target block, the matching motion deriver 30373 configures a minimum value out of D1x, D2x, D1y, and D2y calculated according to (Expression FRUC-11) and a default search range Ddef.
D=min(D1x,D2x,D1y,D2y,Ddef) (Expression FRUC-12)
Alternatively, the following derivation method may be used. As the range allowing reference only to pixels within the collocated tile, the matching motion deriver 30373 derives the search range D1x located in the left direction with respect to the target block, the search range D2x located in the right direction with respect to the target block, the search range D1y located in the upper direction with respect to the target block, and the search range D2y located in the lower direction with respect to the target block, illustrated in
D1x=clip3(0,Ddef,xPosX+mvX[0]−xTs)
D2x=clip3(0,Ddef,xTS+wT−(xPosX+mvX[0]+W))
D1y=clip3(0,Ddef,yPosX+mvX[1]−yTS)
D2y=clip3(0,Ddef,yTS+hT−(yPosX+mvX[1]+H)) (Expression FRUC-11b)
As the search range D of the target block, the matching motion deriver 30373 configures a minimum value out of D1x, D2x, D1y, and D2y calculated according to (Expression FRUC-11b).
D=min(D1x,D2x,D1y,D2y) (Expression FRUC-12b)
Note that, by further using a configuration of padding the tile boundary with a fixed value, the following expression may be used instead of (Expression FRUC-11) and (Expression FRUC-11b).
D1x=xPosX+mvX[0]−(xTs−xPad)
D2x=xTS+wT+xPad−(xPosX+mvX[0]+W)
D1y=yPosX+mvX[1]−(yTS−yPad)
D2y=yTS+hT+yPad−(yPosX+mvX[1]+H) (Expression FRUC-13)
where xPad and yPad respectively represent width and height of the padding.
Alternatively, the following expression may be used.
D1x=clip3(0,Ddef,xPosX+mvX[0]−(xTs−xPad))
D2x=clip3(0,Ddef,xTS+wT+xPad−(xPosX+mvX[0]+W))
D1y=clip3(0,Ddef,yPosX+mvX[1]−(yTS−yPad))
D2y=clip3(0,Ddef,yTS+hT+yPad−(yPosX+mvX[1]+H)) (Expression FRUC-13b)
In the matching process, even in a case that the template is located outside of the tile, or in a case that the motion vectors point to the outside of the tile, the reference pixel can be replaced with a pixel value within the tile, by deriving motion vectors and then generating a prediction image as described above. As a result, decrease in the frequency of using the matching process can be prevented, and inter prediction can be independently performed on the tiles. Therefore, coding efficiency can be enhanced.
OBMC Process
The motion compensation unit 3091 according to the present embodiment may generate a prediction image by means of an OBMC process. Here, an Overlapped block motion compensation (OBMC) process will be described. The OBMC process is a process of generating a compensation image (motion compensation image) of a target block, by using a compensation image PredC of a target sub-block generated using inter prediction parameters (hereinafter motion parameters) of the target block and a compensation image PredRN of the target block generated using motion parameters of neighboring blocks of the target sub-block. A process of correcting a compensation image of the target block is performed for each sub-block, by using the compensation image PredRN based on the motion parameters of neighboring blocks in pixels (boundary pixels) present within the target block close to the block boundary.
Note that it is desirable that the OBMC process be performed for each sub-block obtained by splitting a block, because the shapes of the target block and the neighboring blocks are not necessarily the same. The size of the sub-block can have various values, from 4×4, 8×8, up to the block size.
Flow of OBMC Process
The OBMC predictor 30374 determines the presence/absence and availability of neighboring blocks, which are neighbors of the target sub-block in each of directions of the upper side, the left side, the lower side, and the right side. In
First, the OBMC predictor 30374 checks the necessity of the OBMC process and the presence/absence of neighboring blocks (S3401). In a case that prediction is performed for each block and that the target sub-block does not touch the block boundary in the direction indicated by i, there are no neighboring blocks necessary for the OBMC process (N in S3401), and thus the process proceeds to S3404, and flag obmc_flag[i] is set to 0. Otherwise (in a case that prediction is performed for each block and that the target sub-block touches the block boundary, or in a case that the process is performed for each sub-block), there is a neighboring block necessary for the OBMC process (Y in S3401), and thus the process proceeds to S3402.
For example, a sub-block SCU1[3][0] of
Next, as availability of a neighboring block, the OBMC predictor 30374 checks whether a neighboring block in the direction indicated by i is an intra prediction block or a block outside of the tile (S3402). In a case that the neighboring block is an intra prediction block or a block outside of the tile (Y in S3402), the process proceeds to S3404, and obmc_flag[i] of a corresponding direction i is set to 0. Otherwise (in a case that the neighboring block is an inter prediction block and a block within the tile) (N in S3402), the process proceeds to S3403.
For example, in a case of
Next, as availability of the neighboring block, the OBMC predictor 30374 checks whether the motion parameters of the neighboring block in the direction indicated by i and the target sub-block are the same (S3403). In a case that the motion parameters are the same (Y in S3403), the process proceeds to S3404, and obmc_flag[i] is set to 0 (obmc_flag[i]=0). Otherwise (in a case that the motion parameters are different) (N in S3403), the process proceeds to S3405.
Whether or not the motion parameters of the sub-block and the neighboring block are the same is determined according to the following expression:
((mvLX[0]!=mvLXRN[0])∥(mvLX[1]!=mvLXRN[1])∥(refIdxLX!=refIdxLXRN))? (Expression OBMC-1)
where (mvLX[0], mvLX[1]) represents a motion vector of the target sub-block within the tile, refIdxLX represents a reference picture index thereof, (mvLXRN[0], mvLXRN[1]) represents a motion vector of the neighboring block in the direction indicated by i, and refIdxLXRN represents a reference picture index thereof.
For example, in
Note that, although the above expression uses a motion vector and a reference picture index, determination may be performed by using a motion vector and a POC as in the following expression:
((mvLX[0]!=mvLXRN[0])∥(mvLX[1]!=mvLXRN[1])∥(refPOC !=refPOCRN))? (Expression OBMC-2)
where refPOC represents a POC of a target sub-block, and refPOCRN represents a POC of a neighboring block.
Next, the OBMC predictor 30374 determines whether or not all the regions pointed by the motion vectors of the neighboring blocks are present within the tile (in the reference picture, a part or all of blocks at positions shifted from the collocated block by mvN (N=0 . . . 4) are not present within the collocated tile) (S3405). In a case that all the regions pointed by the motion vectors are present within the tile (Y in S3405), the process proceeds to S3407. Otherwise (in a case that at least a part of the regions pointed by the motion vectors is present outside of the tile) (N in S3405), the process proceeds to S3406.
In a case that the motion vector of the neighboring block points to the outside of the tile, any one of Processes 3 described below is performed (S3406).
[Process 3A] Tile Boundary Padding
The motion compensation unit 3091 performs tile boundary padding. The tile boundary padding (out-of-tile padding) is, as described above, implemented by clipping a reference position, at positions of upper, lower, right, and left boundary pixels of the tile. For example, a reference pixel (xRef, yRef) of the sub-block is derived according to the following expression:
xRef+i=Clip3(xTs,xTs+wT−BW,xs+(MvLXRN[0]>>log 2(M)))
yRef+j=Clip3(yTs,yTs+hT−BH,ys+(MvLXRN[1]>>log 2(M))) (Expression OBMC-3)
where (xs, ys) represents upper left coordinates of the target sub-block with respect to upper left coordinates of the picture, BW and BH respectively represent width and height of the target sub-block, (xTs, yTs) represents upper left coordinates of the target tile at which the target sub-block is located, wT and hT respectively represent width and height of the target tile, and (MvLXRN[0], MvLXRN[1]) represents a motion vector of the neighboring block.
[Process 3B] Tile Boundary Motion Vector Restriction
Clipping is performed so that the motion vector MvLXRN of the neighboring block does not refer to the outside of the tile.—[Process 3C] Tile Boundary Motion Vector Replacement (Alternative Motion Vector Replacement)
A motion vector is copied from a neighboring sub-block that has a motion vector pointing to the inside of the collocated tile.
[Process 3D] Turn Off Tile Boundary OBMC
In a case that a reference image is referred to by the motion vector (MvLXRN[0], MvLXRN[1]) of the neighboring block in the direction i and it is determined that this reference points to the outside of the collocated tile, obmc_flag[i] is set to 0 (obmc_flag[i]=0) (the OBMC process is not performed in the direction i). In this case, the process proceeds forward by skipping S3407.
Note that, in Process 3, the tile encoder 2002 and the tile decoder 2012 need to select the same process.
In a case that the motion vector of the neighboring block points to the inside of the tile, or in a case that Process 3 is performed, the OBMC predictor 30374 sets obmc_flag[i]=1 (S3407).
Next, after the OBMC predictor 30374 performs the process of S3401 to S3407 described above for all the directions (i=1 to 4) of the sub-blocks, the process ends.
The OBMC predictor 30374 outputs the prediction parameters (obmc_flag and the motion parameters of the neighboring block of each sub-block) derived in the above to the inter prediction image generator 309. The inter prediction image generator 309 refers to obmc_flag to determine the necessity of the OBMC process, and performs the OBMC process for the target block (details thereof will be described in Motion Compensation).
Note that, in a case that there is obmc_flag notified from the tile encoder 2002, the tile decoder 2012 may set notified obmc_flag to obmc_flag[i], and may perform the above process only in a case of obmc_flag[i]=1.
BTM
A BTM predictor 3038 uses a prediction image generated using a bi-directional motion vector derived by the merge prediction parameter deriver 3036 as a template, performs a bilateral template matching (BTM) process, and thereby derives a motion vector with high accuracy.
Example of Motion Vector Derivation Process
In a case that two motion vectors derived in the merge mode point to a direction opposite to the target block, the BTM predictor 3038 performs the bilateral template matching (BTM) process.
The bilateral template matching (BTM) process will be described with reference to
As illustrated in
Cur_Temp[x][y]=Clip3(0,(1<<bitDepth)−1,(predL0[x][y]+predL1[x][y]+1)>>1) (Expression BTM-1)
Next, within a range±D pixels around each of mvL0 and mvL1 (initial vector), the BTM predictor 3038 configures motion vector candidates, and derives matching costs between each of the motion compensation images PredL0 and PredL1 generated by the motion vector candidates and the template. Then, vectors mvL0′ and mvL1′ that lead to the minimum matching cost are used as updated motion vectors of the target block. Note that a search range is restricted to a range within the collocated tile on the reference pictures Ref0 and Ref1.
Next, the flow of BTM prediction will be described with reference to
In an M-pixel accuracy LX search process (X=0 . . . 1), a search is performed around coordinates indicated by mvLX, within the tile. In an N-pixel accuracy search LX process, a search is performed around coordinates that lead to the minimum matching cost in the M-pixel accuracy search LX process, within the tile.
Note that the tile boundary may be padded and extended in advance. In this case, the motion compensation unit 3091 performs a padding process in a similar manner.
In order to allow independent decoding of each tile in a case that independent_tile_flag is 1, as expressed in (Expression FRUC-11) to (Expression FRUC-13), the search range D may be adaptively changed so that pixels outside of the collocated tile are not referred to in the motion vector search process. In the BTM process, (mvX[0], mvX[1]) of (Expression FRUC-11) and (Expression FRUC-13) is replaced by (mvLX[0], mvLX[1]).
By modifying the motion vectors derived in the merge mode as in the manner described above, a prediction image can be improved. Moreover, by restricting the modified motion vectors to a range within the tile, decrease in the frequency of using the bilateral template matching process can be prevented, and inter prediction can be independently performed on the tiles. Therefore, coding efficiency can be enhanced.
The vector candidate selection unit 3034 selects a motion vector mvpListLX[mvp_1X_idx] indicated by the prediction vector index mvp_1X_idx among the prediction vector candidates in the prediction vector candidate list mvpListLX[ ], as the prediction vector mvpLX. The vector candidate selection unit 3034 outputs the selected prediction vector mvpLX to the addition unit 3035.
Note that the prediction vector candidates are derived by scaling motion vectors of PUs that have been subjected to a decoding process and that are located within a predetermined range with respect to a decoding target PU (for example, the PUs are neighboring PUs). Note that the neighboring PUs include spatial neighboring PUs of the decoding target PU, such as a left PU and an upper PU, as well as temporal neighboring regions of the decoding target PU, such as a region obtained from a prediction parameter of a PU with different display time and including the same position as the position of the decoding target PU. Note that, as described in derivation of temporal merge candidates, by changing the position of the lower right block of the collocated block to the lower right position within the tile illustrated in
The addition unit 3035 calculates a motion vector mvLX by adding the prediction vector mvpLX input from the AMVP prediction parameter deriver 3032 and the difference vector mvdLX input from the inter prediction parameter decoding controller 3031. The addition unit 3035 outputs the calculated motion vector mvLX to the prediction image generator 308 and the prediction parameter memory 307.
Note that, instead of directly outputting the motion vector derived by the merge prediction parameter deriver 3036 to the inter prediction image generator 309, the motion vector may be output through the BTM predictor 3038.
LIC Predictor 3039
Local Illumination Compensation (LIC) prediction is a process of performing linear prediction for a pixel value of a target block Cur_block, based on pixel values of neighboring regions Ref_Temp (
Cur_Temp′[ ][ ]=a*Ref_Temp[ ] [ ]+b
SSD=ΣΣ(Cur_Temp′[x][y]−Cur_Temp[x][y]){circumflex over ( )}2 (Expression LIC-1)
where ΣΣ represents a sum with respect to x and y.
Note that, in
In a case that a part of the region of either one of the neighboring region Cur_Temp of the target block and the neighboring region Ref_Temp of the reference block is located outside of the tile or the collocated tile, only pixels within the tile or the collocated tile may be used. For example, in a case that an upper neighboring region of the reference block is located outside of the collocated tile, Cur_Temp and Ref_Temp use only pixels of a left neighboring region of the target block and the reference block. For example, in a case that a left neighboring region of the reference block is located outside of the collocated tile, Cur_Temp and Ref_Temp may use only pixels of an upper neighboring region of the target block and the reference block.
Alternatively, in a case that a part of the region of either one of the neighboring region Cur_Temp of the target block and the neighboring region Ref_Temp of the reference block is located outside of the tile or the collocated tile, LIC prediction may be turned off, and the motion compensation unit 3091 need not perform LIC prediction.
Alternatively, in a case that a part of the region of either one of the neighboring region Cur_Temp of the target block and the neighboring region Ref_Temp of the reference block is located outside of the tile or the collocated tile, the region may be set by using pixels within the tile or the collocated tile, on a condition that the size of the region included in the tile or the collocated tile is larger than a threshold. Otherwise, LIC prediction may be turned off. For example, in a case that an upper neighboring region of the reference block is located outside of the collocated tile, and a threshold TH is 16 (threshold TH=16), Cur_Temp and Ref_Temp use pixels of a left neighboring region of the target block and the reference block, on a condition that the height H of the target block is larger than 16. In this case, LIC prediction is turned off, on a condition that the height H of the target block is equal to or less than 16.
Note that pixels to be used may be sub-sampled, or all the pixel values within a region may be used without being sub-sampled.
In these processes, the tile encoder 2002 and the tile decoder 2012 need to select the same process.
The calculated a and b are output to the motion compensation unit 3091, together with the motion vector and the like.
Inter Prediction Image Generator 309
Motion Compensation
Based on the inter prediction parameters (a prediction list use flag predFlagLX, a reference picture index refIdxLX, a motion vector mvLX, an on/off flag, and the like) input from the inter prediction parameter decoder 303, the motion compensation unit 3091 reads from the reference picture memory 306 a block located at the position shifted by the motion vector mvLX from the position of the decoding target PU in the reference picture RefX indicated by the reference picture index refIdxLX, and thereby generates a compensation image (motion compensation image). Here, in a case that accuracy of the motion vector mvLX is not integer accuracy, a filter, called a motion compensation filter, for generating pixels at fractional positions is applied to generate a motion compensation image.
In a case that the motion vector mvLX or the motion vector mvLXN input to the motion compensation unit 3091 is 1/M-pixel accuracy (M is a natural number of 2 or greater), an interpolation filter is applied to generate a compensation image, based on a pixel value of the reference picture at an integer pixel position. Specifically, a compensation image Pred[ ][ ] (described above) is generated based on product-sum operation of an NTAP-tap interpolation filter coefficient mcFilter[nFrac][k] (k=0 . . . NTAP-1) corresponding to a phase nFrac and a pixel of the reference picture.
First, the motion compensation unit 3091 derives an integer position (xInt, yInt) and a phase (xFrac, yFrac) corresponding to coordinates (x, y) within the prediction block, according to the following expression:
x Int=xb+(mvLX[0]>>(log 2(M)))+x (Expression INTER-1)
xFrac=mvLX[0]&(M−1)
y Int=yb+(mvLX[1]>>(log 2(M)))+y
yFrac=mvLX[1]&(M−1)
where (xb, yb) represents upper left coordinates of a block, x=0 . . . nW−1, y=0 . . . nH−1, and M represents accuracy (1/M-pixel accuracy) of the motion vector mvLX.
The motion compensation unit 3091 performs a horizontal interpolation process by using an interpolation filter for a reference picture refImg to derive a temporary image temp[ ][ ]. In the following expression, Σ represents a sum with respect to k for k=0 . . . NTAP-1, shift1 represents a normalization parameter for adjusting a range of a value, and offset1=1<<(shift1−1).
temp[x][y]=(ΣmcFilter[xFrac][k]*refImg[x Int+k−NTAP/2+1][y Int]+offset1)>>shift1 (Expression INTER-2)
Note that padding (described later) is performed in a case that a pixel refImg[xInt+k−NTAP/2+1][yInt] on the reference picture is referred to.
Subsequently, the motion compensation unit 3091 performs a vertical interpolation process for the temporary image temp[ ][ ] to derive a compensation image Pred[ ][ ]. In the following expression, Σ represents a sum with respect to k for k=0 . . . NTAP-1, shift2 represents a normalization parameter for adjusting a range of a value, and offset2=1<<(shift2−1).
Pred[x][y]=(ΣmcFilter[yFrac][k]*temp[x][y+k−NTAP/2+1]+offset2)>>shift2 (Expression INTER-3)
Note that, in a case of bi-prediction, above Pred[ ][ ] is derived for each of the lists L0 and L1 (respectively referred to as compensation images PredL0[ ][ ] and PredL1[ ][ ]), and the compensation image Pred[ ][ ] is generated based on the compensation image PredL0[ ][ ] and the compensation image PredL1[ ][ ].
Note that, in a case that at least a part of the input motion vector mvLX and motion vector mvLXN points to the outside of the collocated tile of the tile where the target block is located, inter prediction can be independently performed for the tile by padding the tile boundary in advance.
Padding
In (Expression INTER-2) described above, the pixel refImg[xInt+k−NTAP/2+1][yInt] on the reference picture is referred to; however, in a case that an actually non-existent pixel value outside of a picture is referred to, the following picture boundary padding (out-of-picture padding) is performed. The picture boundary padding is implemented by using a pixel value refImg[xRef+i][yRef+j] of the following position xRef+i, yRef+j for the pixel value of a position (xIntL+i, ylntL+j) of the reference pixel.
xRef+i=Clip3(0,pic_width_in_luma_samples−1,xIntL+i)
yRef+j=Clip3(0,pic_height_in_luma_samples−1,yIntL+j) (Expression PAD-3)
Note that, instead of the picture boundary padding (Expression PAD-3), the tile boundary padding (Expression PAD-1) may be performed.
OBMC Compensation Image Generation
In OBMC, two types of compensation images, i.e., a compensation image of a target sub-block derived based on inter prediction parameters of a target block and a compensation image derived based on inter prediction parameters of a neighboring block, are generated, and then a compensation image to be finally used for prediction is generated through a weighted addition process of these two compensation images. The compensation image of the target sub-block derived based on the inter prediction parameters of the target block is herein referred to as a compensation image PredC (first OBMC compensation image), and the compensation image derived based on the inter prediction parameters of the neighboring block is herein referred to as a compensation image PredRN (second OBMC compensation image). Note that N represents any one of the upper side (A), the left side (L), the lower side (B), and the right side (R) of the target sub-block. In a case that the OBMC process is not performed (OBMC off), the compensation image PredC is directly used as the motion compensation image PredLX of the target sub-block. In a case that the OBMC process is performed (OBMC on), the motion compensation image PredLX of the target sub-block is generated based on the compensation image PredC and the compensation image PredRN.
The motion compensation unit 3091 generates a compensation image, based on the inter prediction parameters (a prediction list use flag predFlagLX, a reference picture index refIdxLX, a motion vector mvLX, and an OBMC flag obmc_flag) of the target sub-block input from the inter prediction parameter decoder 303.
First, the motion compensation unit 3091 generates a compensation image PredC[x][y] (x=0 . . . BW−1, y=0 . . . BH−1), based on prediction parameters (S3411).
Next, whether or not obmc_flag[i] is 1 (obmc_flag[i]=1) is determined (S3413). In a case of obmc_flag[i]=0 (N in S3413), the process proceeds for the next direction (i=i+1). In a case of obmc_flag[i]=1 (Y in S3413), a compensation image PredRN[x][y] is generated (S3414). Specifically, only for the sub-block in the direction indicated by i that satisfies obmc_flag[i]=1, the compensation image PredRN[x][y] (x=0 . . . BW−1, y=0 . . . BH−1) is generated based on a prediction list use flag predFlagLX[xPbN][yPbN], a reference picture index refIdxLX[xPbN][yPbN], and a motion vector mvLX[xPbN][yPbN] of the neighboring block that are input from the inter prediction parameter decoder 303 (S3414), a weighted average process for the compensation image PredC[x][y] and the compensation image PredRN[x][y] (described below) is performed (S3415), and the compensation image PredLX is generated (S3416). Note that (xPbN, yPbN) represents upper left coordinates of the neighboring block.
Next, a weighted average process is performed (S3415).
In the configuration of performing the OBMC process, the motion compensation unit 3091 performs a weighted average process for the compensation image PredC[x][y] and the compensation image PredRN[x][y], and thereby updates the compensation image PredC[x][y]. Specifically, in a case that the OBMC flag obmc_flag[i] input from the inter prediction parameter decoder 303 is 1 (OBMC flag obmc_flag[i]=1) (OBMC process is enabled), the motion compensation unit 3091 performs the following weighted average process for S pixels at the sub-block boundary in the direction indicated by i.
PredC[x][y]=((w1*PredC[x][y]+w2*PredRN[x][y])+o)>>shift (Expression INTER-4)
Here, weights w1 and w2 of the weighted average process will be described. The weights w1 and w2 of the weighted average process are determined according to the distance (the number of pixels) between the sub-block boundary and the target pixel. The relationship of w1+w2=(1<<shift) and o=1<<(shift-1) holds.
In the OBMC process, a prediction image is generated by using compensation images of multiple neighboring blocks. Here, a method of updating PredC[x][y] based on motion parameters of multiple neighboring blocks will be described.
First, in a case of obmc_flag[1]=1, the motion compensation unit 3091 applies a compensation image PredRA[x][y], which is generated by using motion parameters of an upper neighboring block, to a compensation image PredC[x][y] of a target sub-block, and thereby updates PredC[x][y].
PredC[x][y]=((w1*PredC[x][y]+w2*PredRA[x][y])+o)>>shift (Expression INTER-5)
Next, for the direction i satisfying obmc_flag[i]=1, the motion compensation unit 3091 sequentially updates PredC[x][y] by using compensation images PredRL[x][y], PredRL[x][y], and PredRL[x][y], which are generated by using motion parameters of left (i=2), lower (i=3), and right (i=4) neighboring blocks of the target sub-block. Specifically, the update is performed according to the following expression:
PredC[x][y]=((w1*PredC[x][y]+w2*PredRL[x][y])+o)>>shift
PredC[x][y]=((w1*PredC[x][y]+w2*PredRB[x][y])+o)>>shift
PredC[x][y]=((w1*PredC[x][y]+w2*PredRR[x][y])+o)>>shift (Expression INTER-6)
In a case of obmc_flag[0]=0, or for i=1 to 4, the above process is performed, and then PredC[x][y] is set to the prediction image PredLX[x][y] (S3416).
PredLX[x][y]=PredC[x][y] (Expression INTER-7)
As described above, the motion compensation unit 3091 can generate a prediction image in consideration of motion parameters of the neighboring blocks of the target sub-block. Therefore, in the OBMC process, a prediction image with high prediction accuracy can be generated.
The number S of pixels at the sub-block boundary updated in the OBMC process may be any number (S=2 to the block size). A split manner for a block including a sub-block to be subjected to the OBMC process may be any split manner, such as 2N×N, N×2N, and N×N.
Even in a case that a motion vector of the sub-block points to the outside of the tile, the reference pixel can be replaced by using a pixel value within the tile, by deriving OBMC motion vectors and then generating a prediction image as described above. As a result, decrease in the frequency of using the OBMC process can be prevented, and inter prediction can be independently performed on the tiles. Therefore, coding efficiency can be enhanced.
LIC Compensation Image Generation
In LIC, the compensation image Pred of the target block derived according to (Expression INTER-3) is modified by using the scaling coefficient a and the offset b calculated by the LIC predictor 3039, and a prediction image PredLX is thereby generated.
PredLX[x][y]=Pred[x][y]*a+b (Expression INTER-8)
Weighted Prediction
The weighted predictor 3094 multiplies the input motion compensation image PredLX by a weighting coefficient, and thereby generates a prediction image of the target block. In a case that one of the prediction list use flags (predFlagL0 or predFlagL1) is 1 (in a case of uni-prediction), and weighted prediction is not used, a process of the following expression for adjusting the input motion compensation image PredLX (LX is L0 or L1) to the number bitDepth of pixel bits is performed.
Pred[x][y]=Clip3(0,(1<<bitDepth)−1,(PredLX[x][y]+offset1)>>shift1) (Expression INTER-9)
where shift1=14−bitDepth, and offset1=1<<(shift1−1).
In a case that both of the prediction list use flags (predFlagL0 and predFlagL1) are 1 (in a case of bi-prediction BiPred), and weighted prediction is not used, a process of the following expression for averaging the input motion compensation images PredL0 and PredL1 and adjusting to the number of pixel bits is performed.
Pred[x][y]=Clip3(0,(1<<bitDepth)−1,(PredL0[x][y]+PredL1[x][y]+offset2)>>shift2) (Expression INTER-10)
where shift2=15−bitDepth, and offset2=1<<(shift2−1).
Furthermore, in a case of uni-prediction, and that weighted prediction is performed, the weighted predictor 3094 derives a weighted prediction coefficient w0 and an offset o0 from coded data, and performs a process of the following expression:
Pred[x][y]=Clip3(0,(1<<bitDepth)−1,((PredLX[x][y]*w0+2{circumflex over ( )}(log 2WD−1))>>log 2WD)+o0) (Expression INTER-11)
where log 2WD represents a variable indicating a prescribed shift amount.
Furthermore, in a case of bi-prediction BiPred, and that weighted prediction is performed, the weighted predictor 3094 derives weighted prediction coefficients w0, w1, o0, and o1 from coded data, and performs a process of the following expression:
Pred[x][y]=Clip3(0,(1<<bitDepth)−1,(PredL0[x][y]*w0+PredL1[x][y]*w1+((o0+o1+1)<<log 2WD))>>(log 2WD+1)) (Expression INTER-12)
Motion Vector Decoding Process
A motion vector decoding process according to the present embodiment will be specifically described below with reference to
As is apparent from the above description, the motion vector decoding process according to the present embodiment includes a process of decoding syntax elements associated with inter prediction (also referred to as a motion syntax decoding process), and a process of deriving a motion vector (motion vector derivation process).
Motion Syntax Decoding Process
First, in Step S101, a merge flag merge_flag is decoded, and in Step S102, whether or not merge_flag is 0 (merge_flag !=0) is determined.
In a case that merge_flag !=0 is true (Y in S102), in S103, a merge index merge_idx is decoded, and a motion vector derivation process of the merge mode (S111) is performed.
In a case that merge_flag !=0 is false (N in S102), in S104, an inter prediction indicator inter_pred_idc is decoded.
In a case that inter_pred_idc is other than PRED_L1 (PRED_L0 or PRED_BI), a reference picture index ref_idx_10, a parameter mvdL0 of a difference vector, and a prediction vector index mvp_10_idx are decoded respectively in S105, S106, and S107.
In a case that inter_pred_idc is other than PRED_L0 (PRED_L1 or PRED_BI), a reference picture index ref_idx_11, a parameter mvdL1 of a difference vector, and a prediction vector index mvp_11_idx are decoded respectively in S108, S109, and S110. Subsequently, a motion vector derivation process of the AMVP mode (S112) is performed.
Owing to the configuration as described above, the image decoding device 2000 can independently decode the tiles for each tile sequence in a case that a value of independent_tile_flag is 1. A system of guaranteeing independence of decoding of each tile is introduced in each individual tool, and therefore decrease in coding efficiency can be prevented, and each tile can be independently decoded in a video. As a result, decoding can be performed in a selected region necessary for display or the like, and therefore a processing amount can be reduced in a great degree.
Configuration of Image Encoding Device
The picture splitter 2010 splits a picture into non-overlapping multiple tiles, and transmits the tiles to the tile encoders 2012a to 2012n. The header information generator 2011 generates tile information (a Tile Id, the number of splits of the tile, and information related to the size) from the split tiles, and transmits the tile information as header information to the coding stream generator 2013.
The tile encoders 2012a to 2012n code each tile. The tile encoders 2012a to 2012n also code the tiles for each tile sequence. In this manner, according to the tile encoders 2012a to 2012n, tiles can be subjected to a coding process in parallel.
Here, the tile encoders 2012a to 2012n perform a coding process for the tile sequence in a similar manner to that for one independent video sequence, and do not either temporally or spatially refer to prediction information of a tile sequence with a different Tile ID in a case of performing the coding process. Specifically, in a case of coding a tile within a certain picture, the tile encoders 2012a to 2012n do not either spatially or temporally refer to another tile.
The coding stream generator 2013 generates a coding stream Te for each NAL unit, based on the header information including the tile information transmitted from the header information generator 2011, and the tiles coded by the tile encoders 2012a to 2012n.
In this manner, the tile encoders 2012a to 2012n can independently code each tile. As a result, multiple tiles can be subjected to a coding process in parallel, a decoding device can perform a decoding process for multiple tiles in parallel, or only one tile can be independently decoded.
Configuration of Tile Encoder
Next, a configuration of the tile encoders 2012a to 2012n will be described. As an example, a configuration of the tile encoder 2012a will be described below with reference to
For each picture of an image T, the prediction image generator 101 generates a prediction image P of a prediction unit PU for each coding unit CU that is a region where the picture is split. Here, the prediction image generator 101 reads a block that has been decoded from the reference picture memory 109, based on a prediction parameter input from the prediction parameter encoder 111. For example, in a case of an inter prediction, the prediction parameter input from the prediction parameter encoder 111 is a motion vector. The prediction image generator 101 reads a block in a position in a reference picture indicated by a motion vector starting from a target PU. In a case of an intra prediction, the prediction parameter is, for example, an intra prediction mode. The prediction image generator 101 reads a pixel value of a neighboring PU used in an intra prediction mode from the reference picture memory 109, and generates the prediction image P of a PU. The prediction image generator 101 generates the prediction image P of a PU by using one prediction scheme among multiple prediction schemes for the read reference picture block. The prediction image generator 101 outputs the generated prediction image P of the PU to the subtraction unit 102.
Note that the prediction image generator 101 is an operation the same as the prediction image generator 308 already described. For example,
The prediction image generator 101 generates the prediction image P of a PU, based on a pixel value of a reference block read from the reference picture memory, by using a parameter input by the prediction parameter encoder. The prediction image generated by the prediction image generator 101 is output to the subtraction unit 102 and the addition unit 106.
The intra prediction image generator (not illustrated) included in the prediction image generator 101 performs the same operation as the operation of the intra prediction image generator 310 described above.
The subtraction unit 102 subtracts a signal value of the prediction image P of a PU input from the prediction image generator 101 from a pixel value of a corresponding PU position of the image T, and generates a residual signal. The subtraction unit 102 outputs the generated residual signal to the transform processing and quantization unit 103.
The transform processing and quantization unit 103 performs a frequency transform for the prediction residual signal input from the subtraction unit 102, and calculates transform coefficients. The transform processing and quantization unit 103 quantizes the calculated transform coefficients to calculate quantization transform coefficients. The transform processing and quantization unit 103 outputs the calculated quantization transform coefficients to the entropy encoder 104 and the inverse quantization and inverse transform processing unit 105.
To the entropy encoder 104, quantization transform coefficients are input from the transform processing and quantization unit 103, and prediction parameters are input from the prediction parameter encoder 111. For example, input prediction parameters include codes such as a reference picture index ref_idx_1X, a prediction vector index mvp_1X_idx, a difference vector mvdLX, a prediction mode pred_mode_flag, and a merge index merge_idx.
The entropy encoder 104 performs entropy coding on the input split information, prediction parameters, quantization transform coefficients, and the like to generate the coding stream Te, and outputs the generated coding stream Te to the outside.
The inverse quantization and inverse transform processing unit 105 is the same as the inverse quantization and inverse transform processing unit 311 (
The addition unit 106 adds signal values of the prediction image P of the PUs input from the prediction image generator 101 and signal values of the residual signals input from the inverse quantization and inverse transform processing unit 105 for each pixel, and generates the decoded image. The addition unit 106 stores the generated decoded image in the reference picture memory 109.
The loop filter 107 performs a deblocking filter 114, a sample adaptive offset (SAO) 115, and an adaptive loop filter (ALF) 116 to the decoded image generated by the addition unit 106. Note that the loop filter 107 need not necessarily include the above three types of filters, and may include only the deblocking filter 114, for example.
The prediction parameter memory 108 stores the prediction parameters generated by the coding parameter determiner 110 for each picture and CU of the coding target in a prescribed position.
The reference picture memory 109 stores the decoded image generated by the loop filter 107 for each picture and CU of the coding target in a prescribed position.
The coding parameter determiner 110 selects one set among multiple sets of coding parameters. A coding parameter is the above-mentioned QT or BT split parameter or prediction parameter, or a parameter to be a target of coding generated in association with these parameters. The prediction image generator 101 generates the prediction image P of the PUs by using each of the sets of these coding parameters.
The coding parameter determiner 110 calculates RD cost values indicating a volume of an information quantity and coding errors for each of the multiple sets. For example, an RD cost value is a sum of a code amount and a value of multiplying a coefficient λ by a square error. The code amount is an information quantity of the coding stream Te obtained by performing entropy coding on a quantization residual and a coding parameter. The square error is a sum of pixels for square values of residual values of residual signals calculated in the subtraction unit 102. The coefficient λ is a real number that is larger than a pre-configured zero. The coding parameter determiner 110 selects a set of coding parameters by which the calculated RD cost value is minimized. With this configuration, the entropy encoder 104 outputs the selected set of coding parameters as the coding stream Te to the outside, and does not output sets of coding parameters that are not selected. The coding parameter determiner 110 stores the determined coding parameters in the prediction parameter memory 108.
The prediction parameter encoder 111 derives a format for coding from parameters input from the coding parameter determiner 110, and outputs the format to the entropy encoder 104. A derivation of a format for coding is, for example, to derive a difference vector from a motion vector and a prediction vector. The prediction parameter encoder 111 derives parameters necessary to generate a prediction image from parameters input from the coding parameter determiner 110, and outputs the parameters to the prediction image generator 101. For example, parameters necessary to generate a prediction image are a motion vector of a sub-block unit.
The inter prediction parameter encoder 112 derives inter prediction parameters such as a difference vector, based on prediction parameters input from the coding parameter determiner 110. The inter prediction parameter encoder 112 includes a partly identical configuration to a configuration by which the inter prediction parameter decoder 303 derives inter prediction parameters, as a configuration to derive parameters necessary for generation of a prediction image output to the prediction image generator 101. A configuration of the inter prediction parameter encoder 112 will be described later.
The intra prediction parameter encoder 113 includes a partly identical configuration to a configuration by which the intra prediction parameter decoder 304 derives intra prediction parameters, as a configuration to derive prediction parameters necessary for generation of a prediction image output to the prediction image generator 101.
The intra prediction parameter encoder 113 derives a format for coding (for example, MPM_idx, rem_intra_luma_pred_mode, and the like) from the intra prediction mode IntraPredMode input from the coding parameter determiner 110.
Configuration of Inter Prediction Parameter Encoder
Next, a configuration of the inter prediction parameter encoder 112 will be described. The inter prediction parameter encoder 112 is a unit corresponding to the inter prediction parameter decoder 303 of
The inter prediction parameter encoder 112 includes an inter prediction parameter coding controller 1121, an AMVP prediction parameter deriver 1122, a subtraction unit 1123, a sub-block prediction parameter deriver 1125, a BTM predictor 1126, and an LIC predictor 1127. Although not illustrated, the inter prediction parameter encoder 112 further includes a split mode deriver, a merge flag deriver, an inter prediction indicator deriver, a reference picture index deriver, and a vector difference deriver, for example. The split mode deriver, the merge flag deriver, the inter prediction indicator deriver, the reference picture index deriver, and the vector difference deriver derive the PU split mode part_mode, the merge flag merge_flag, the inter prediction indicator inter_pred_idc, the reference picture index refIdxLX, and the difference vector mvdLX, respectively. The inter prediction parameter encoder 112 outputs, to the prediction image generator 101, the motion vectors (mvLX, subMvLX) and the reference picture index refIdxLX, the PU split mode part_mode, the inter prediction indicator inter_pred_idc, or information indicating these. The inter prediction parameter encoder 112 outputs, to the entropy encoder 104, the PU split mode part_mode, the merge flag merge_flag, the merge index merge_idx, the inter prediction indicator inter_pred_idc, the reference picture index refIdxLX, the prediction vector index mvp_1X_idx, the difference vector mvdLX, and the sub-block prediction mode flag subPbMotionFlag.
The inter prediction parameter coding controller 1121 includes a merge index deriver 11211 and a vector candidate index deriver 11212. The merge index deriver 11211 compares a motion vector and a reference picture index input from the coding parameter determiner 110 with motion vectors and reference picture indexes of PUs of merge candidates read from the prediction parameter memory 108, respectively, and thereby derives a merge index merge_idx and outputs the derived merge index merge_idx to the entropy encoder 104. The merge candidates are reference PUs (for example, reference PUs touching a lower left end, an upper left end, and an upper right end of a coding target block) that are located within a predetermined range with respect to a coding target CU to be coded, and are PUs that have been subjected to a coding process. The vector candidate index deriver 11212 derives the prediction vector index mvp_1X_idx.
In a case that the coding parameter determiner 110 determines to use the sub-block prediction mode, the sub-block prediction parameter deriver 1125 derives a motion vector and a reference picture index for sub-block prediction of any one of spatial sub-block prediction, temporal sub-block prediction, affine prediction, matching motion derivation, and OBMC prediction, in accordance with the value of subPbMotionFlag. As described in the description for tile decoder 2002, the motion vector and the reference picture index are derived by reading a motion vector and a reference picture index of a neighboring PU, a reference picture block, and the like from the prediction parameter memory 108. The sub-block prediction parameter deriver 1125, as well as a spatial-temporal sub-block predictor 11251, an affine predictor 11252, a matching motion deriver 11253, and an OBMC predictor 11254 included in the sub-block prediction parameter deriver 1125, have configurations similar to the configurations of the sub-block prediction parameter deriver 3037 of the inter prediction parameter decoder 303, as well as the spatial-temporal sub-block predictor 30371, the affine predictor 30372, the matching motion deriver 30373, and the OBMC predictor 30374 included in the sub-block prediction parameter deriver 3037, respectively.
The AMVP prediction parameter deriver 1122 includes the affine predictor 11221, and has a configuration similar to the configuration of the above-described AMVP prediction parameter deriver 3032 (see
Specifically, in a case that the prediction mode predMode indicates the inter prediction mode, the motion vector mvLX is input to the AMVP prediction parameter deriver 1122 from the coding parameter determiner 110. Based on the input motion vector mvLX, the AMVP prediction parameter deriver 1122 derives a prediction vector mvpLX. The AMVP prediction parameter deriver 1122 outputs the derived prediction vector mvpLX to the subtraction unit 1123. Note that the reference picture index refIdxLX and the prediction vector index mvp_1X_idx are output to the entropy encoder 104. The affine predictor 11221 has a configuration similar to the configuration of the affine predictor 30321 of the above-described AMVP prediction parameter deriver 3032 (see
The subtraction unit 1123 subtracts the prediction vector mvpLX input from the AMVP prediction parameter deriver 1122 from the motion vector mvLX input from the coding parameter determiner 110, and thereby generates a difference vector mvdLX. The difference vector mvdLX is output to the entropy encoder 104.
An image encoding device or a video decoding device according to one aspect of the present invention is a video encoding device or a video decoding device for performing a spatial-temporal sub-block prediction process of deriving a motion vector (first motion vector) per sub-block of a target block, based on a spatial neighboring block or a temporal neighboring block, the image encoding device or the video decoding device including: a unit configured to refer to a neighboring block within a tile sequence including the target block, and acquire a motion vector (second motion vector) and a reference picture (second reference picture) of an available neighboring block; a unit configured to calculate a sub-block level motion vector (third motion vector) of the target block, based on the second motion vector and the second reference picture; a unit configured to scale the third motion vector by using a time difference between a target picture and the second reference picture or between the target picture and a reference picture (first reference picture) of the target block, and derive the first motion vector; and a unit configured to determine whether or not a reference pixel is present within the tile sequence on the first reference picture, the reference pixel being referred to in a case of deriving a motion compensation image by using the first motion vector of the sub-block of the target block, wherein in a case that the reference pixel is not present within the tile sequence, a process of deriving a pixel value of the motion compensation image based on a pixel value within the tile sequence is performed.
In the image encoding device or the video decoding device according to one aspect of the present invention, the motion compensation image derivation process uses a padding pixel derived based on a boundary pixel of the tile sequence.
In the image encoding device or the video decoding device according to one aspect of the present invention, the motion compensation image derivation process is processed within a range restriction of the first motion vector.
In the image encoding device or the video decoding device according to one aspect of the present invention, the motion compensation image derivation process is processed by performing a process by copying a motion vector of a neighboring sub-block to the first motion vector.
In the image encoding device or the video decoding device according to one aspect of the present invention, the motion compensation image derivation process is performed in a case that the number of horizontal tiles within a picture, the number of vertical tiles within the picture, a width of a tile, and a height of the tile remain unchanged throughout certain sequence units (Coded Video Sequence (CVS)).
In the image encoding device or the video decoding device according to one aspect of the present invention, a position of the temporal neighboring block is a block including lower right coordinates within a collocated block.
In the image encoding device or the video decoding device according to one aspect of the present invention, a tile reference restriction flag is coded or decoded, in a case that the tile reference restriction flag is 0, the position of the temporal neighboring block is configured to a position of a lower right neighboring block of the collocated block, and in a case that the tile reference restriction flag is 1, the position of the temporal neighboring block is configured to a lower right position within the collocated block.
An image encoding device or a video decoding device according to one aspect of the present invention is a device for performing variable-length coding or decoding on a syntax by using a context (probability model) adaptively updated and selected depending on a type of the syntax and a surrounding condition, for each of multiple tiles constituting a picture, the image encoding device or the video decoding device including: a memory configured to store a predetermined context (first context); a storage unit configured to store contexts updated for each of the coded or decoded tiles in the memory, together with a tile ID, a slice type, and a quantization parameter; a determination unit configured to determine whether or not a context (second context) of a tile having the same tile ID and using the same slice type or the same quantization parameter is stored in the memory, among the contexts stored in the memory; a reading unit configured to read, from the memory, an initial state of a context of a tile to be coded or decoded; and a variable-length coding and decoding unit configured to perform variable-length coding or decoding on the syntax by using the initial state, wherein in a case that the determination unit determines that the second context is stored in the memory, the reading unit reads the second context as the initial state, otherwise, the reading unit reads the first context as the initial state, and the variable-length coding and decoding unit performs variable-length coding or variable-length decoding on the tile by using the initial state.
An image encoding device according to one aspect of the present invention is a video encoding device for applying an adaptive loop filter (ALF) to each of multiple tiles constituting a picture, the image encoding device including: a unit configured to calculate a filter coefficient of a target tile; a memory configured to store filter information (the filter coefficient, a tile ID, a slice type, and a quantization parameter) of the target tile; a encoder unit configured to code a parameter related to the filter information; and a filter unit configured to apply the ALF to the target tile by using the filter coefficient, wherein in a case that the filter information of the target tile is the same as one piece of the filter information stored in the memory, the encoder unit codes an index indicating the filter information stored in the memory as a parameter, otherwise, the encoder unit codes the filter information of the target tile as a parameter, and stores the coded parameter in the memory, and the filter unit applies the ALF to the target tile by using the filter coefficient.
An image decoding device according to one aspect of the present invention is a video decoding device for applying an adaptive loop filter (ALF) to each of multiple tiles constituting a picture, the image decoding device including: a unit configured to decode a parameter related to filter information of a target tile from a coding stream; a derivation unit configured to derive a filter coefficient, based on the parameter; a memory configured to store filter information (the filter coefficient, a tile ID, a slice type, and a quantization parameter) of the target tile; and a filter unit configured to apply the ALF to the target tile by using the filter coefficient, wherein in a case that the parameter is an index, the derivation unit derives the filter coefficient selected from the filter information stored in the memory by using the index as the filter coefficient of the target tile, otherwise, the derivation unit derives the parameter as the filter information of the target tile, and stores the derived parameter in the memory, together with the tile ID, the slice type, and the quantization parameter, and the filter unit applies the ALF to the target tile by using the filter coefficient.
An image encoding device or a video decoding device according to one aspect of the present invention is a video encoding device or a video decoding device for performing a motion compensation prediction process by means of affine prediction for a sub-block obtained by splitting a target block, the image encoding device or the video decoding device including: a first derivation unit configured to derive a motion vector (first motion vector) of each of two representative points of the target block; a determination unit configured to determine whether or not the first motion vector refers to an inside of a tile sequence; a second derivation unit configured to derive a motion vector (second motion vector) of the sub-block included in the target block, based on the first motion vector; and a generator unit configured to generate a motion compensation image per sub-block, based on the second motion vector, wherein in a case that the determination unit determines that the first motion vector refers to an outside of the tile sequence, a process of deriving a pixel value of the motion compensation image based on a pixel value within the tile sequence is performed.
In the image encoding device or the video decoding device according to one aspect of the present invention, in a case that the determination unit determines that the first motion vector refers to the outside of the tile sequence, the first derivation process is processed within a range restriction of the first motion vector.
In the image encoding device or the video decoding device according to one aspect of the present invention, in a case that the second motion vector refers to an outside of a tile, the generator unit generates the motion compensation image by padding a tile boundary.
In the image encoding device or the video decoding device according to one aspect of the present invention, the motion vector of each of the two representative points is derived by adding a prediction vector referring to a prediction vector index and a difference vector.
In the image encoding device or the video decoding device according to one aspect of the present invention, in a case that a left side of the target block touches a tile boundary, the representative points are configured to upper left and upper right points of the target block, and in a case that an upper side of the target block touches the tile boundary, the representative points are configured to upper left and lower left points of the target block.
In the image encoding device or the video decoding device according to one aspect of the present invention, the motion vector of each of the two representative points is derived based on a motion vector of each of three points within a neighboring block in which the affine prediction is used.
An image encoding device or a video decoding device according to one aspect of the present invention is a video encoding device or a video decoding device for performing an overlapped motion compensation prediction process by using a motion vector (first motion vector) of a sub-block obtained by splitting a target block and a motion vector (second motion vector) from a neighboring block of the sub-block, the image encoding device or the video decoding device including: an acquisition unit configured to acquire the second motion vector from the neighboring block, the neighboring block being a neighbor of the sub-block in each of directions of an upper side, a left side, a lower side, and a right side; a first determination unit configured to determine whether or not a reference pixel is present within a tile sequence on a reference picture, the reference pixel being referred to in a case of generating a motion compensation image by using the second motion vector of the sub-block; a second determination unit configured to determine whether or not the first motion vector and the second motion vector are the same; a first generator unit configured to generate a first motion compensation image by using the first motion vector of the sub-block; a second generator unit configured to generate a second motion compensation image by using the second motion vector of the sub-block; and a third generator unit configured to generate a prediction image by adding the first motion compensation image and the second motion compensation image, in a case that the second determination unit determines that the two motion vectors are not the same, wherein in a case that the first determination unit determines that the reference pixel is not present within the tile sequence on the reference picture, a process of deriving a pixel value of the motion compensation image, based on a pixel value within the tile sequence is performed.
In the image encoding device or the video decoding device according to one aspect of the present invention, the generator unit uses a padding pixel derived based on a boundary pixel of the tile sequence.
In the image encoding device or the video decoding device according to one aspect of the present invention, the generator unit performs a process within a range restriction of the second motion vector.
In the image encoding device or the video decoding device according to one aspect of the present invention, the generator unit performs a process by copying a motion vector of the neighboring block to the second motion vector.
An image encoding device or a video decoding device according to one aspect of the present invention is a video encoding device or a video decoding device for performing a motion compensation prediction process by means of template matching for a sub-block obtained by splitting a target block, the image encoding device or the video decoding device including: a first acquisition unit configured to acquire upper and left neighboring regions (first template region) of a target block in a target picture, and upper and left neighboring regions (second template region) of a reference block in a reference picture; a first derivation unit configured to derive a motion vector (first motion vector) leading to a minimum matching cost between the first template region and the second template region, based on a motion vector of a neighboring block of the target block; a second acquisition unit configured to acquire upper and left neighboring regions (third template region) of the sub-block obtained by splitting the target block in the target picture, and upper and left neighboring regions (fourth template region) of the sub-block obtained by splitting the reference block in the reference picture; a second derivation unit configured to derive a motion vector (second motion vector) leading to a minimum matching cost between the third template region and the fourth template region, based on the first motion vector or the motion vector of the neighboring block; and a generator unit configured to generate a motion compensation image by using the second motion vector of the sub-block, wherein the first acquisition unit includes a determination unit configured to determine whether or not all the first template region is present within a tile, in a case of acquiring the first template region, in a case that the determination unit determines that a part of the first template region is present within a tile sequence, only any one of the upper neighboring region and the left neighboring region present within the tile sequence is acquired as the first template region, and in a case that the determination unit determines that the first template region is not present within the tile sequence, the motion compensation prediction process by means of template matching is not performed.
An image decoding device or a video encoding device according to one aspect of the present invention includes: a filtered reference image configuration unit configured to derive a filtered reference image on a reference region configured for a prediction target block; a predictor unit configured to refer to the filtered reference image to derive a temporary prediction image of the prediction target block, by means of a prediction scheme in accordance with an intra prediction mode; and a prediction image correction unit configured to perform a prediction image correction process, based on an unfiltered reference image on the reference region and the intra prediction mode, to thereby generate a prediction image from the temporary prediction image, wherein the prediction image correction unit derives the prediction image by applying weighted addition using a weighting coefficient to a pixel value of the temporary prediction image and pixel values of at least two or more unfiltered reference images, and in a case that a pixel (upper left pixel) of the unfiltered reference image located at upper left of the prediction target block is located outside of a tile sequence, the prediction image is derived by replacing a pixel value of the upper left pixel with a pixel value within the tile sequence.
In the image decoding device or the video encoding device according to one aspect of the present invention, the prediction image correction unit replaces the pixel value of the upper left pixel with a pixel value of the unfiltered reference image located immediately on an upper side of a left end or right end pixel of the prediction target block.
In the image decoding device or the video encoding device according to one aspect of the present invention, the prediction image correction unit replaces the pixel value of the upper left pixel with a pixel value of the unfiltered reference image located immediately on a left side of an upper end or lower end pixel of the prediction target block.
An image decoding device or a video encoding device according to one aspect of the present invention includes: a derivation unit configured to derive a linear model (prediction parameter) between a luminance component and a chrominance component, based on an unfiltered reference image of the luminance component and an unfiltered reference image of the chrominance component being neighbors of a prediction target block; a down-sampling unit including multiple filters that down-sample a decoded image of the luminance component of the prediction target block; and a predictor unit configured to refer to the prediction parameter, and generate a prediction image of the chrominance component from the decoded image of the down-sampled luminance component, wherein in a case that at least a part of left and upper unfiltered reference images of the prediction target block is located outside of a tile sequence, the down-sampling unit down-samples the decoded image of the luminance component by using one predetermined type of a filter.
An image decoding device or a video encoding device according to one aspect of the present invention includes: a first motion vector derivation unit configured to perform an initial vector search and a local search of a matching process for each target block, and thereby derive a motion vector; and a second motion vector derivation unit configured to refer to a first motion vector derived by the first motion vector derivation unit, and performs an initial vector search and a local search of a matching process for each of multiple sub-blocks included in the target block, and thereby derive a motion vector, wherein in a case that an outside of a tile sequence is included in a search range of a motion vector search of the matching process, the search range is configured so that only a pixel within the tile sequence is referred to.
An image decoding device or a video encoding device according to one aspect of the present invention is a video encoding device or a video decoding device for performing a spatial-temporal prediction process by deriving a motion vector of a target block, based on a spatial neighboring block or a temporal neighboring block, the image decoding device or the video encoding device including: a unit configured to determine whether or not a reference pixel is present within a tile sequence on a reference picture, the reference pixel being referred to in a case of deriving a motion compensation image by using a motion vector of the target block; and a unit configured to derive a pixel value of the motion compensation image, based on a pixel value within the tile sequence, in a case that the reference pixel is not present within the tile sequence, wherein a position of the temporal neighboring block is a block including any one of lower right coordinates within a collocated block, lower left coordinates of a right neighboring block of the collocated block, and upper right coordinates of a lower neighboring block of the collocated block.
In the image decoding device or the video encoding device according to one aspect of the present invention, a tile reference restriction flag is coded or decode, in a case that the tile reference restriction flag is 0, the position of the temporal neighboring block is configured to a position of a lower right neighboring block of the collocated block, and in a case that the tile reference restriction flag is 1, the position of the temporal neighboring block is configured to the position of the block including any one of the lower right coordinates within the collocated block, the lower left coordinates of the right neighboring block of the collocated block, and the upper right coordinates of the lower neighboring block of the collocated block.
An image decoding device or a video encoding device according to one aspect of the present invention is a video encoding device or a video decoding device for performing a spatial-temporal prediction process by deriving a motion vector (first motion vector) of a target block, based on a spatial neighboring block or a temporal neighboring block, the image decoding device or the video encoding device including: a unit configured to refer to a neighboring block within a tile sequence including the target block, and acquire a prediction parameter (motion vector (second motion vector), reference picture) of an available spatial or temporal neighboring block; a unit configured to store the acquired prediction parameter of the neighboring block in a list storing prediction candidates of the first motion vector; and a unit configured to pad a region outside of the tile sequence, wherein in a case that the second motion vector stored in a candidate list includes multiple motion vectors referring to a padding region, the storage unit keeps the second motion vector first stored in the candidate list, and removes other second motion vectors referring to the padding region from the candidate list.
Implementation Examples by Software
Note that, part of the tile encoder 2012 and the tile decoder 2002 according to the above-mentioned embodiments, for example, the entropy decoder 301, the prediction parameter decoder 302, the loop filter 305, the prediction image generator 308, the inverse quantization and inverse transform processing unit 311, the addition unit 312, the prediction image generator 101, the subtraction unit 102, the transform processing and quantization unit 103, the entropy encoder 104, the inverse quantization and inverse transform processing unit 105, the loop filter 107, the coding parameter determiner 110, and the prediction parameter encoder 111, may be realized by a computer. In that case, this configuration may be realized by recording a program for realizing such control functions on a computer-readable recording medium and causing a computer system to read the program recorded on the recording medium for execution. Note that it is assumed that the “computer system” mentioned here refers to a computer system built into either the tile encoder 2012 or the tile decoder 2002, and the computer system includes an OS and hardware components such as a peripheral device. Furthermore, the “computer-readable recording medium” refers to a portable medium such as a flexible disk, a magneto-optical disk, a ROM, a CD-ROM, and the like, and a storage device such as a hard disk built into the computer system. Moreover, the “computer-readable recording medium” may include a medium that dynamically retains a program for a short period of time, such as a communication line that is used to transmit the program over a network such as the Internet or over a communication line such as a telephone line, and may also include a medium that retains a program for a fixed period of time, such as a volatile memory within the computer system for functioning as a server or a client in such a case. Furthermore, the program may be configured to realize some of the functions described above, and also may be configured to be capable of realizing the functions described above in combination with a program already recorded in the computer system.
Part or all of the image encoding device 11 and the image decoding device 31 in the embodiments described above may be realized as an integrated circuit such as a Large Scale Integration (LSI). Each function block of the image encoding device 11 and the image decoding device 31 may be individually realized as processors, or part or all may be integrated into processors. The circuit integration technique is not limited to LSI, and the integrated circuits for the functional blocks may be realized as dedicated circuits or a multi-purpose processor. In a case that with advances in semiconductor technology, a circuit integration technology with which an LSI is replaced appears, an integrated circuit based on the technology may be used.
The embodiments of the present invention have been described in detail above referring to the drawings, but the specific configuration is not limited to the above embodiments and various amendments can be made to a design that falls within the scope that does not depart from the gist of the present invention.
Application Examples
The above-mentioned image encoding device 11 and the image decoding device 31 can be utilized being installed to various devices performing transmission, reception, recording, and regeneration of videos. Note that, videos may be natural videos imaged by cameras or the like, or may be artificial videos (including CG and GUI) generated by computers or the like.
At first, referring to
The transmission device PROD_A may further include a camera PROD_A4 imaging videos, a recording medium PROD_A5 recording videos, an input terminal PROD_A6 to input videos from the outside, and an image processing unit PRED_A7 which generates or processes images, as sources of supply of the videos input into the encoder PROD_A1. In
Note that the recording medium PROD_A5 may record videos which are not coded, or may record videos coded in a coding scheme for recording different from a coding scheme for transmission. In the latter case, a decoder (not illustrated) to decode coded data read from the recording medium PROD_A5 according to coding scheme for recording may be interleaved between the recording medium PROD_A5 and the encoder PROD_A1.
The reception device PROD_B may further include a display PROD_B4 displaying videos, a recording medium PROD_B5 to record the videos, and an output terminal PROD_B6 to output videos outside, as supply destination of the videos output by the decoder PROD_B3. In
Note that the recording medium PROD_B5 may record videos which are not coded, or may record videos which are coded in a coding scheme for recording different from a coding scheme for transmission. In the latter case, an encoder (not illustrated) to code videos acquired from the decoder PROD_B3 according to a coding scheme for recording may be interleaved between the decoder PROD_B3 and the recording medium PROD_B5.
Note that the transmission medium transmitting modulating signals may be wireless or may be wired. The transmission aspect to transmit modulating signals may be broadcasting (here, referred to as the transmission aspect where the transmission target is not specified beforehand) or may be telecommunication (here, referred to as the transmission aspect that the transmission target is specified beforehand). Thus, the transmission of the modulating signals may be realized by any of radio broadcasting, cable broadcasting, radio communication, and cable communication.
For example, broadcasting stations (broadcasting equipment, and the like)/receiving stations (television receivers, and the like) of digital terrestrial television broadcasting is an example of the transmission device PROD_A/reception device PROD_B transmitting and/or receiving modulating signals in radio broadcasting. Broadcasting stations (broadcasting equipment, and the like)/receiving stations (television receivers, and the like) of cable television broadcasting are an example of the transmission device PROD_A/reception device PROD_B transmitting and/or receiving modulating signals in cable broadcasting.
Servers (work stations, and the like)/clients (television receivers, personal computers, smartphones, and the like) for Video On Demand (VOD) services, video hosting services using the Internet and the like are an example of transmission device PROD_A/reception device PROD_B transmitting and/or receiving modulating signals in telecommunication (usually, any of radio or cable is used as transmission medium in the LAN, and cable is used for as transmission medium in the WAN). Here, personal computers include a desktop PC, a laptop type PC, and a graphics tablet type PC. Smartphones also include a multifunctional portable telephone terminal.
Note that a client of a video hosting service has a function to code a video imaged with a camera and upload the video to a server, in addition to a function to decode coded data downloaded from a server and to display on a display. Thus, a client of a video hosting service functions as both the transmission device PROD_A and the reception device PROD_B.
Next, referring to
Note that the recording medium PROD_M may be (1) a type built in the recording device PROD_C such as Hard Disk Drive (HDD) or Solid State Drive (SSD), may be (2) a type connected to the recording device PROD_C such as an SD memory card or a Universal Serial Bus (USB) flash memory, and may be (3) a type loaded in a drive device (not illustrated) built in the recording device PROD_C such as Digital Versatile Disc (DVD) or Blu-ray (trademark) Disc (BD: trademark).
The recording device PROD_C may further include a camera PROD_C3 imaging a video, an input terminal PROD_C4 to input the video from the outside, a receiver PROD_C5 to receive the video, and an image processing unit PROD_C6 which generates or processes images, as sources of supply of the video input into the encoder PROD_C1. In
Note that the receiver PROD_C5 may receive a video which is not coded, or may receive coded data coded in a coding scheme for transmission different from a coding scheme for recording. In the latter case, a decoder (not illustrated) for transmission to decode coded data coded in a coding scheme for transmission may be interleaved between the receiver PROD_C5 and the encoder PROD_C1.
Examples of such recording device PROD_C include a DVD recorder, a BD recorder, a Hard Disk Drive (HDD) recorder, and the like (in this case, the input terminal PROD_C4 or the receiver PROD_C5 is the main source of supply of a video). A camcorder (in this case, the camera PROD_C3 is the main source of supply of a video), a personal computer (in this case, the receiver PROD_C5 or the image processing unit C6 is the main source of supply of a video), a smartphone (in this case, the camera PROD_C3 or the receiver PROD_C5 is the main source of supply of a video), or the like is an example of such recording device PROD_C.
Note that the recording medium PROD_M may be (1) a type built in the regeneration device PROD_D such as HDD or SSD, may be (2) a type connected to the regeneration device PROD_D such as an SD memory card or a USB flash memory, and may be (3) a type loaded in a drive device (not illustrated) built in the regeneration device PROD_D such as DVD or BD.
The regeneration device PROD_D may further include a display PROD_D3 displaying a video, an output terminal PROD_D4 to output the video to the outside, and a transmitter PROD_D5 which transmits the video, as the supply destination of the video output by the decoder PROD_D2. In
Note that the transmitter PROD_D5 may transmit a video which is not coded, or may transmit coded data coded in a coding scheme for transmission different from a coding scheme for recording. In the latter case, an encoder (not illustrated) to code a video in a coding scheme for transmission may be interleaved between the decoder PROD_D2 and the transmitter PROD_D5.
Examples of such regeneration device PROD_D include a DVD player, a BD player, an HDD player, and the like (in this case, the output terminal PROD_D4 to which a television receiver, and the like is connected is the main supply target of the video). A television receiver (in this case, the display PROD_D3 is the main supply target of the video), a digital signage (also referred to as an electronic signboard or an electronic bulletin board, and the like, the display PROD_D3 or the transmitter PROD_D5 is the main supply target of the video), a desktop PC (in this case, the output terminal PROD_D4 or the transmitter PROD_D5 is the main supply target of the video), a laptop type or tablet type PC (in this case, the display PROD_D3 or the transmitter PROD_D5 is the main supply target of the video), a smartphone (in this case, the display PROD_D3 or the transmitter PROD_D5 is the main supply target of the video), or the like is an example of such regeneration device PROD_D.
Realization as Hardware and Realization as Software
Each block of the above-mentioned image decoding device 31 and the image encoding device 11 may be realized as a hardware by a logical circuit formed on an integrated circuit (IC chip), or may be realized as a software using a Central Processing Unit (CPU).
In the latter case, each device includes a CPU performing a command of a program to implement each function, a Read Only Memory (ROM) stored in the program, a Random Access Memory (RAM) developing the program, and a storage device (recording medium) such as a memory storing the program and various data, and the like. The purpose of the embodiments of the present invention can be achieved by supplying, to each of the devices, the recording medium recording in a computer-readable manner the program code (execution form program, intermediate code program, source program) of the control program of each of the devices which is software implementing the above-mentioned functions, and a computer (or a CPU or a MPU) reading and performing the program code recorded in the recording medium.
For example, as the recording medium, a tape such as a magnetic tape or a cassette tape, a disc including a magnetic disc such as a floppy (trademark) disk/a hard disk and an optical disc such as a Compact Disc Read-Only Memory (CD-ROM)/Magneto-Optical disc (MO disc)/Mini Disc (MD)/Digital Versatile Disc (DVD)/CD Recordable (CD-R)/Blu-ray (trademark) Disc (trademark), a card such as an IC card (including a memory card)/an optical card, a semiconductor memory such as a mask ROM/Erasable Programmable Read-Only Memory (EPROM)/Electrically Erasable and Programmable Read-Only Memory (EEPROM: trademark)/a flash ROM, or a Logical circuits such as a Programmable logic device (PLD) or a Field Programmable Gate Array (FPGA) can be used.
Each of the devices is configured connectably with a communication network, and the program code may be supplied through the communication network. This communication network may be able to transmit a program code, and is not specifically limited. For example, the Internet, the intranet, the extranet, Local Area Network (LAN), Integrated Services Digital Network (ISDN), Value-Added Network (VAN), a Community Antenna television/Cable Television (CATV) communication network, Virtual Private Network, telephone network, a mobile communication network, satellite communication network, and the like are available. A transmission medium constituting this communication network may also be a medium which can transmit a program code, and is not limited to a particular configuration or type. For example, a cable communication such as Institute of Electrical and Electronic Engineers (IEEE) 1394, a USB, a power line carrier, a cable TV line, a phone line, an Asymmetric Digital Subscriber Line (ADSL) line, and a radio communication such as infrared ray such as Infrared Data Association (IrDA) or a remote control, BlueTooth (trademark), IEEE 802.11 radio communication, High Data Rate (HDR), Near Field Communication (NFC), Digital Living Network Alliance (trademark) (DLNA: trademark), a cellular telephone network, a satellite channel, a terrestrial digital broadcast network are available. Note that the embodiments of the present invention can be also realized in the form of computer data signals embedded in a carrier wave where the program code is embodied by electronic transmission.
The embodiment of the present invention is not limited to the above-described embodiments. It is possible to make various modifications within the scope of the claims. Embodiments obtained by appropriately combining technical elements disclosed in different embodiments fall also within the technical scope of the present invention. Further, it is possible to form a new technical feature by combining technical elements disclosed in the respective embodiments.
This application claims the benefit of priority to JP 2017-126272 filed on 28 Jun. 2017, to JP 2017-162106 filed on 25 Aug. 2017, to JP 2017-146569 filed on 28 Jul. 2017, and to JP 2018-061846 filed on 28 Mar. 2018, which are incorporated herein by reference in its entirety.
The embodiments of the present invention can be preferably applied to an image decoding device to decode coded data where image data is coded, and an image encoding device to generate coded data where image data is coded. The embodiments of the present invention can be preferably applied to a data structure of coded data generated by the image encoding device and referred to by the image decoding device.
Number | Date | Country | Kind |
---|---|---|---|
JP2017-126272 | Jun 2017 | JP | national |
JP2017-146569 | Jul 2017 | JP | national |
JP2017-162106 | Aug 2017 | JP | national |
JP2018-061846 | Mar 2018 | JP | national |
Filing Document | Filing Date | Country | Kind |
---|---|---|---|
PCT/JP2018/024364 | 6/27/2018 | WO | 00 |
Publishing Document | Publishing Date | Country | Kind |
---|---|---|---|
WO2019/004283 | 1/3/2019 | WO | A |
Number | Name | Date | Kind |
---|---|---|---|
10462488 | Li | Oct 2019 | B1 |
10560712 | Zou | Feb 2020 | B2 |
10652536 | Lim | May 2020 | B2 |
10681371 | Park | Jun 2020 | B2 |
10848760 | Drugeon | Nov 2020 | B2 |
10880543 | Lv | Dec 2020 | B2 |
20050078755 | Woods | Apr 2005 | A1 |
20130215016 | Moriyoshi | Aug 2013 | A1 |
20160219302 | Liu | Jul 2016 | A1 |
20170134724 | Liu et al. | May 2017 | A1 |
20180220149 | Son | Aug 2018 | A1 |
20180241998 | Chen | Aug 2018 | A1 |
20180270500 | Li | Sep 2018 | A1 |
20180278950 | Chen | Sep 2018 | A1 |
20190058896 | Huang | Feb 2019 | A1 |
Number | Date | Country |
---|---|---|
2014-197795 | Oct 2014 | JP |
2012060459 | May 2012 | WO |
Entry |
---|
Proposal on ME with the OBMC on-off mode for the advanced mode; 1997; Song; (Year: 1997). |
Coding mode adapted overlapped block motion compensation in H.264; 2006; Wang; (Year: 2006). |
Multiple macroblock mode OBMC for wavelet video coding; 2007; Chen; (Year: 2007). |
Parametric solution for optimal overlapped block motion compensation; 2010; Tao; (Year: 2010). |
An affine MC framework for HEVC; 2015 (Year: 2015). |
Control-Point Representation and Differential Coding Affine-Motion Compensation; 2013. (Year: 2013). |
Affine transform prediction for next generation of video coding; 2015. (Year: 2015). |
An affine MC framework for HEVC coding; 2015. (Year: 2015). |
Improved affine motion prediction; 2016. (Year: 2016). |
Official Communication issued in International Patent Application No. PCT/JP2018/024364, dated Sep. 18, 2018. |
Chen et al., “Algorithm Description of Joint Exploration Test Model 6 (JEM 6)”, Joint Video Exploration Team (JVET) of ITU-T SG 16 WP 3 and ISO/IEC JTC 1/SC 29/WG 11, JVET-F1001-v3, Mar. 31-Apr. 7, 2017, 51 pages. |
Chen et al., “Algorithm Description of Joint Exploration Test Model 7 (JEM 7)”, Joint Video Exploration Team (JVET) of ITU-T SG 16 WP 3 and ISO/IEC JTC 1/SC 29/WG 11, JVET-G1001-v1, Jul. 13-21, 2017, 51 pages. |
Chen et al., “Algorithm Description of Joint Exploration Test Model 6 (JEM 6)”, Joint Video Exploration Team (JVET) of ITU-T SG 16 WP 3 and ISO/IEC JTC 1/SC 29/WG 11, JVET-F1001-v2, Mar. 31-Apr. 7, 2017, 4 pages. |
Number | Date | Country | |
---|---|---|---|
20200177911 A1 | Jun 2020 | US |