WO2016000210A1 - An improved depth lookup table - Google Patents

An improved depth lookup table Download PDF

Info

Publication number
WO2016000210A1
WO2016000210A1 PCT/CN2014/081387 CN2014081387W WO2016000210A1 WO 2016000210 A1 WO2016000210 A1 WO 2016000210A1 CN 2014081387 W CN2014081387 W CN 2014081387W WO 2016000210 A1 WO2016000210 A1 WO 2016000210A1
Authority
WO
WIPO (PCT)
Prior art keywords
dlt
value
depth
numdepthvaluesindlt
index
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Ceased
Application number
PCT/CN2014/081387
Other languages
French (fr)
Inventor
Kai Zhang
Jicheng An
Xianguo Zhang
Han HUANG
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
MediaTek Singapore Pte Ltd
Original Assignee
MediaTek Singapore Pte Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by MediaTek Singapore Pte Ltd filed Critical MediaTek Singapore Pte Ltd
Priority to PCT/CN2014/081387 priority Critical patent/WO2016000210A1/en
Publication of WO2016000210A1 publication Critical patent/WO2016000210A1/en
Anticipated expiration legal-status Critical
Ceased legal-status Critical Current

Links

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04NPICTORIAL COMMUNICATION, e.g. TELEVISION
    • H04N19/00Methods or arrangements for coding, decoding, compressing or decompressing digital video signals
    • H04N19/50Methods or arrangements for coding, decoding, compressing or decompressing digital video signals using predictive coding
    • H04N19/597Methods or arrangements for coding, decoding, compressing or decompressing digital video signals using predictive coding specially adapted for multi-view video sequence encoding
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04NPICTORIAL COMMUNICATION, e.g. TELEVISION
    • H04N19/00Methods or arrangements for coding, decoding, compressing or decompressing digital video signals
    • H04N19/46Embedding additional information in the video signal during the compression process

Definitions

  • the invention relates generally to Three-Dimensional (3D) video processing.
  • the presented invention relates to depth coding.
  • DLT Depth lookup table
  • SDC intra simplified depth coding
  • DDM depth map modeling
  • Fig.1 demonstrates an example of DLT approach.
  • DLT is signaled in picture parameter set (PPS). And it is left to be an encoder issue how to get the DLT when encoding.
  • predSamples[ x ][ y ] Idx2DepthValue[ Depth Value2Idx[ predDcVal ] + dcOffset ], wherein (x, y) represents the sample coordination, predDcVal is the DC prediction value, dcOffset is an offset signaled from the encoder to the decoder, Depth Value2Idx is a mapping table that maps a depth value to a DLT index, and Idx2Depth Value is a mapping table that maps a DLT index to a depth value.
  • Depth Value2Idx[ predDcVal ] + dcOffset might exceed the range of valid DLT indices.
  • Idx2Depth Value [ Depth Value2Idx [ predDcVal ] + dcOffset ] will try to map an invalid DLT index to a depth value. The mapping will fail and the decoding process cannot run correctly. For example, when there are only 10 entries in DLT, the valid DLT indices are 0, 1, ...8, 9. If Depth Value2Idx [ predDcVal ] + dcOffset ] is equal to 20 or -1, the value of Idx2DepthValue[ 20 ] is undefined and the decoding process will be crashed.
  • JCT3 V-I0057 was proposed to address this problem.
  • JCT3 V-I0057 JCT3 V-I0057
  • predSamples[ x ][ y ] Idx2DepthValue[ Depth Value2Idx[ predDcVal ] + dcOffset ] is replaced by
  • predSamples[ x ][ y ] Idx2DepthValue[ Clip3( 0, ( 1 « bitDepth ) - 1, Depth Value2Idx[ predDcVal ] + dcOffset ) ],
  • bitDepth is the bit depth of depth samples.
  • bitDepth is 8 when depth values are from 0 to 255.
  • JCT3V-I0057 does not solve the problem completely. It make a constrain that Depth Value2Idx[ predDcVal ] + dcOffset cannot exceed ( 1 « bitDepth ) - 1. But the number of DLT entries usually is smaller than ( 1 « bitDepth ). For example, when bitDepth is 8 then the prediction samples are calculated in JCT3V-I0057 as
  • predSamples[ x ][ y ] Idx2DepthValue[ Clip3( 0, 255,DepthValue2Idx[ predDcVal ] + dcOffset ) ].
  • DLT depth lookup table
  • Fig. 1 is a diagram illustrating an example of DLT. There are five valid values appears in depth samples Therefore, there are five entries in DLT in the order: 50, 108, 110, 112 and 200;
  • Fig. 2 is a diagram illustrating the flowchart to clip the DLT index to a valid value
  • predSamples[ x ][ y ] Idx2DepthValue[ Depth Value2Idx[ predDcVal ] + dcOffset ] is replaced by
  • predSamples[ x ][ y ] Idx2DepthValue[Clip3(0, NumDepthValuesInDlt[ nuh layer id ]-l, DepthValue2Idx[ predDcVal ] + dcOffset ) ],
  • NumDepthValuesInDlt[ nuh layer id ] is the number of depth values in the DLT for the current coding layer nuh layer id.
  • Fig.2 illustrates the clipping process.
  • DC values for two segments in segment-wise depth coding (SDC) or depth-map model (DMM) are calculated as
  • DcVal[ 0 ] Idx2DepthValue[ Clip3( 0, NumDepthValuesInDlt[ nuh layer id ] - 1, DepthValue2Idx[ dcValLT ] + ( dcOffset AvailFlag ? DcOffset[ xTb ][ yTb ][ 0 ] : 0 ) ];
  • DcVal[ 1 ] Idx2DepthValue[ Clip3( 0, NumDepthValuesInDlt[ nuh layer id ] - 1,
  • Idx2DepthValue[ i ] is set equal to DltDepthValue[ NumDepthValuesInDlt- 1] for all i larger than or equal to NumDepthValuesInDlt as illustrated in Fig. 3.
  • Idx2Depth Value is the table mapping a DLT index to a depth value.
  • NumDepthValuesInDlt is the number of entries in the current DLT.
  • DltDepth Value is the table mapping a depth value to a DLT index.
  • the list elements Idx2DepthValue[ i ] specifying the depth value of the i-th index in the lookup table with i ranging from NumDepthValuesInDlt[ nuh layer id ] to ( 1 « bitDepth ) - l, inclusively, is set equal to DltDepth Value[ nuh layer id ][ NumDepthValuesInDlt[ nuh layer id ]- 1].
  • Idx2DepthValue[ i ] is set equal to DltDepth Value[ 0 ] for all i lower than 0 as illustrated in Fig. 4.
  • Idx2Depth Value is the table mapping a DLT index to a depth value.
  • DltDepth Value is the table mapping a depth value to a DLT index.
  • the list elements Idx2DepthValue[ i ] specifying the depth value of the i-th index in the lookup table with i ranging from l-( 1 « bitDepth ) to - 1, inclusive, is set equal to DltDepth Value[ nuh layer id ][0].

Landscapes

  • Engineering & Computer Science (AREA)
  • Multimedia (AREA)
  • Signal Processing (AREA)
  • Compression Or Coding Systems Of Tv Signals (AREA)

Abstract

It is proposed to clip the reconstructed index of the depth lookup table (DLT) to a proper value. In this case, meaningless DLT indices can be avoided.

Description

AN IMPROVED DEPTH LOOKUP TABLE
FIELD OF INVENTION
The invention relates generally to Three-Dimensional (3D) video processing. In particular, the presented invention relates to depth coding.
BACKGROUND OF THE INVENTION
Depth lookup table (DLT) is adopted into 3D-HEVC. Since there are often only several values appearing in the depth component, DLT signals those valid values from the encoder to the decoder. When a CU is coded in intra simplified depth coding (SDC) mode or depth map modeling (DMM) mode, DLT is used to map the valid depth value to a DLT index which is much easier to compress. Fig.1 demonstrates an example of DLT approach. DLT is signaled in picture parameter set (PPS). And it is left to be an encoder issue how to get the DLT when encoding.
In the current design, the prediction samples are calculated as follows:
predSamples[ x ][ y ]= Idx2DepthValue[ Depth Value2Idx[ predDcVal ] + dcOffset ], wherein (x, y) represents the sample coordination, predDcVal is the DC prediction value, dcOffset is an offset signaled from the encoder to the decoder, Depth Value2Idx is a mapping table that maps a depth value to a DLT index, and Idx2Depth Value is a mapping table that maps a DLT index to a depth value.
In such a design, Depth Value2Idx[ predDcVal ] + dcOffset might exceed the range of valid DLT indices. In such a case, Idx2Depth Value [ Depth Value2Idx [ predDcVal ] + dcOffset ] will try to map an invalid DLT index to a depth value. The mapping will fail and the decoding process cannot run correctly. For example, when there are only 10 entries in DLT, the valid DLT indices are 0, 1, ...8, 9. If Depth Value2Idx [ predDcVal ] + dcOffset ] is equal to 20 or -1, the value of Idx2DepthValue[ 20 ] is undefined and the decoding process will be crashed.
JCT3 V-I0057 was proposed to address this problem. In JCT3 V-I0057,
predSamples[ x ][ y ]= Idx2DepthValue[ Depth Value2Idx[ predDcVal ] + dcOffset ] is replaced by
predSamples[ x ][ y ]=Idx2DepthValue[ Clip3( 0, ( 1 « bitDepth ) - 1, Depth Value2Idx[ predDcVal ] + dcOffset ) ],
wherein bitDepth is the bit depth of depth samples. For example, bitDepth is 8 when depth values are from 0 to 255.
However, JCT3V-I0057 does not solve the problem completely. It make a constrain that Depth Value2Idx[ predDcVal ] + dcOffset cannot exceed ( 1 « bitDepth ) - 1. But the number of DLT entries usually is smaller than ( 1 « bitDepth ). For example, when bitDepth is 8 then the prediction samples are calculated in JCT3V-I0057 as
predSamples[ x ][ y ]= Idx2DepthValue[ Clip3( 0, 255,DepthValue2Idx[ predDcVal ] + dcOffset ) ].
When there are only 10 entries in DLT, the valid DLT indices are 0, 1, ...8, 9. If Depth Value2Idx [ predDcVal ] + dcOffset ] is equal to 20, the value of Idx2DepthValue[ 20 ] is still undefined and the decoding process will be crashed.
SUMMARY OF THE INVENTION
In light of the previously described problems, methods are proposed to improve the depth lookup table (DLT).
Other aspects and features of the invention will become apparent to those with ordinary skill in the art upon review of the following descriptions of specific embodiments.
BRIEF DESCRIPTION OF THE DRAWINGS
The invention can be more fully understood by reading the subsequent detailed description and examples with references made to the accompanying drawings, wherein:
Fig. 1 is a diagram illustrating an example of DLT. There are five valid values appears in depth samples Therefore, there are five entries in DLT in the order: 50, 108, 110, 112 and 200;
Fig. 2 is a diagram illustrating the flowchart to clip the DLT index to a valid value;
Fig. 3 is a diagram illustrating an example of the original Idx2Depth Value table and the proposed Idx2Depth Value table for i >= NumDepthValuesInDlt. NumDepthValuesInDlt=5 in the example;
Fig. 4 is a diagram illustrating an example of the original Idx2Depth Value table and the proposed Idx2Depth Value table for i < 0. NumDepthValuesInDlt=5 in the example. DETAILED DESCRIPTION
The following description is of the best-contemplated mode of carrying out the invention. This description is made for the purpose of illustrating the general principles of the invention and should not be taken in a limiting sense. The scope of the invention is best determined by reference to the appended claims.
It is proposed to make the prediction samples always valid when depth lookup table is applied.
In one embodiment, the derivation of prediction samples as
predSamples[ x ][ y ]= Idx2DepthValue[ Depth Value2Idx[ predDcVal ] + dcOffset ] is replaced by
predSamples[ x ][ y ]=Idx2DepthValue[Clip3(0, NumDepthValuesInDlt[ nuh layer id ]-l, DepthValue2Idx[ predDcVal ] + dcOffset ) ],
wherein NumDepthValuesInDlt[ nuh layer id ] is the number of depth values in the DLT for the current coding layer nuh layer id. Fig.2 illustrates the clipping process.
In another embodiment, the DC values for two segments in segment-wise depth coding (SDC) or depth-map model (DMM) are calculated as
DcVal[ 0 ] = Idx2DepthValue[ Clip3( 0, NumDepthValuesInDlt[ nuh layer id ] - 1, DepthValue2Idx[ dcValLT ] + ( dcOffset AvailFlag ? DcOffset[ xTb ][ yTb ][ 0 ] : 0 ) ) ];
DcVal[ 1 ] = Idx2DepthValue[ Clip3( 0, NumDepthValuesInDlt[ nuh layer id ] - 1,
DepthValue2Idx[ dcValBR ] +( dcOffsetAvailFlag ? DcOffset[ xTb ][ yTb ][ 1 ] : 0 ) ) ].
In still another embodiment, Idx2DepthValue[ i ] is set equal to DltDepthValue[ NumDepthValuesInDlt- 1] for all i larger than or equal to NumDepthValuesInDlt as illustrated in Fig. 3. Idx2Depth Value is the table mapping a DLT index to a depth value. NumDepthValuesInDlt is the number of entries in the current DLT. DltDepth Value is the table mapping a depth value to a DLT index.
In still another embodiment, the list elements Idx2DepthValue[ i ] specifying the depth value of the i-th index in the lookup table with i ranging from NumDepthValuesInDlt[ nuh layer id ] to ( 1 « bitDepth ) - l, inclusively, is set equal to DltDepth Value[ nuh layer id ][ NumDepthValuesInDlt[ nuh layer id ]- 1].
In still another embodiment, Idx2DepthValue[ i ] is set equal to DltDepth Value[ 0 ] for all i lower than 0 as illustrated in Fig. 4. NumDepthValuesInDlt. Idx2Depth Value is the table mapping a DLT index to a depth value. DltDepth Value is the table mapping a depth value to a DLT index.
In still another embodiment, the list elements Idx2DepthValue[ i ] specifying the depth value of the i-th index in the lookup table with i ranging from l-( 1 « bitDepth ) to - 1, inclusive, is set equal to DltDepth Value[ nuh layer id ][0].

Claims

1. A method of depth coding, comprising mapping a valid depth value from a reconstructed depth lookup table (DLT) index.
2. The method as claimed in claim 1, wherein the reconstructed DLT index is clipped to a valid DLT index before it is used to map a depth value.
3. The method as claimed in claim 2, wherein the reconstructed DLT index is clipped to NumDepthValuesInDlt - 1 if it is larger than or equal to NumDepthValuesInDlt, where NumDepthValuesInDlt is a number of entries in the current DLT.
4. The method as claimed in claim 1, wherein Idx2DepthValue[ i ] is set equal to DltDepth Value[ NumDepthValuesInDlt- 1] for all i larger than or equal to NumDepthValuesInDlt; Idx2Depth Value is the table mapping a DLT index to a depth value; NumDepthValuesInDlt is a number of entries in the current DLT; and DltDepth Value is the table mapping a depth value to a DLT index.
5. The method as claimed in claim 1, wherein Idx2DepthValue[ i ] is set equal to DltDepth Value[ 0 ] for all i lower than 0; NumDepthValuesInDlt; Idx2Depth Value is the table mapping a DLT index to a depth value; and DltDepth Value is the table mapping a depth value to a DLT index.
PCT/CN2014/081387 2014-07-01 2014-07-01 An improved depth lookup table Ceased WO2016000210A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
PCT/CN2014/081387 WO2016000210A1 (en) 2014-07-01 2014-07-01 An improved depth lookup table

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/CN2014/081387 WO2016000210A1 (en) 2014-07-01 2014-07-01 An improved depth lookup table

Publications (1)

Publication Number Publication Date
WO2016000210A1 true WO2016000210A1 (en) 2016-01-07

Family

ID=55018290

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2014/081387 Ceased WO2016000210A1 (en) 2014-07-01 2014-07-01 An improved depth lookup table

Country Status (1)

Country Link
WO (1) WO2016000210A1 (en)

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101465004A (en) * 2007-12-21 2009-06-24 三星电子株式会社 Method, medium, and apparatus representing adaptive information of 3D depth image

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101465004A (en) * 2007-12-21 2009-06-24 三星电子株式会社 Method, medium, and apparatus representing adaptive information of 3D depth image

Non-Patent Citations (4)

* Cited by examiner, † Cited by third party
Title
FABIAN JAGER.: "JCT2-A0010, 3D-CE6.h related: Model-based Intra Coding for Depth Maps using a Depth Lookup Table", JOINT COLLABORATIVE TEAM ON 3D VIDEO CODING EXTENSION DEVELOPMENT OF ITU-T SG 16 WP 3 AND ISO/IEC JTC 1/SC 29/WG 11 1ST MEETING, 20 July 2012 (2012-07-20), Stockholm, SE, XP030130009 *
FABIAN JAGER.: "JCT3V-B0036, 3D-CE6.h: Simplified Depth Coding with an optional Depth Lookup Table", JOINT COLLABORATIVE TEAM ON 3D VIDEO CODING EXTENSION DEVELOPMENT OF ITU- T SG 16 WP 3 AND ISO/IEC JTC 1/SC 29/WG 11 2ND MEETING, 19 October 2012 (2012-10-19), Shanghai, CN, XP030130217 *
FABIAN JAGER.: "JCT3V-D0054, CE6.H related: Results on Updating Mechanism for Coding of Depth Lookup Table (Delta-DLT", JOINT COLLABORATIVE TEAM ON 3D VIDEO CODING EXTENSIONS OF ITU-TSG 16 WP 3 AND ISO/ IEC JTC 1/SC 29/WG 11 4TH MEETING, 26 April 2013 (2013-04-26), Incheon, KR, XP030130718 *
ZHANG, KAI ET AL.: "JCT3V-H0091, On DLT signaling in 3D-HEVC", JOINT COLLABORATIVE TEAM ON 3D VIDEO CODING EXTENSION DEVELOPMENT OF ITU-T SG 16 WP 3 AND ISO/IEC JTC 1/SC 29/WG 11 8TH MEETING, 4 April 2014 (2014-04-04), Valencia, ES, XP030132151 *

Similar Documents

Publication Publication Date Title
JP2022522771A5 (en)
JP2022506286A5 (en)
JP2017522779A5 (en)
JP2018532319A5 (en)
GB2494468B (en) Method and device for encoding or decoding information representing prediction modes
US11151748B2 (en) 3D point cloud data encoding/decoding method and apparatus
ZA202201424B (en) Reference picture resampling with switchable filters
JP2018530962A5 (en)
KR20180084705A (en) Method and apparatus for video encoding with in-loop filtering based on tree-structured data unit, method and apparatus for video decoding with the same
JP2016528796A5 (en)
JP2017513332A5 (en)
EP4539466A3 (en) An encoder, a decoder and corresponding methods for sub-block partitioning mode
EP2945383A1 (en) Adaptive context initialization
MX394412B (en) VIDEO ENCODING METHOD, VIDEO DECODING METHOD AND TERMINAL.
JP2016513917A5 (en)
EP4383718A3 (en) An encoder, a decoder and corresponding methods of chroma intra mode derivation
JP2020522170A5 (en)
RU2015116434A (en) CODER, DECODER AND METHODS FOR REVERSABLE SPATIAL SPATIAL CODING OF VARIABLE AUDIO OBJECTS
RU2014150558A (en) IMAGE CODING METHOD, IMAGE DECODING METHOD, IMAGE CODING DEVICE, IMAGE DECODING DEVICE AND IMAGE CODING AND DECODING DEVICE
EP4373091A3 (en) Coding device, coding method, decoding device, and decoding method
JP2017513340A5 (en)
CN106060564A (en) Intra-frame prediction reference pixel point filtering control method and device, and coder
WO2015184605A1 (en) Depth coding compatible with arbitrary bit-depth
MX354608B (en) Simplified processing of weighted prediction syntax and semantics using a bit depth variable for high precision data.
GB2624835A (en) Point cloud data frames compression

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 14896925

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 14896925

Country of ref document: EP

Kind code of ref document: A1