Arxiv:2012.15463V1 [Cs.CV] 31 Dec 2020

Total Page:16

File Type:pdf, Size:1020Kb

Arxiv:2012.15463V1 [Cs.CV] 31 Dec 2020 LEARNED MULTI-RESOLUTION VARIABLE-RATE IMAGE COMPRESSION WITH OCTAVE-BASED RESIDUAL BLOCKS Mohammad Akbari∗, Jie Liang∗, Jingning Hany, Chengjie Tuz [email protected], [email protected], [email protected], [email protected] Simon Fraser University, Canada∗, Google Inc.y, Tencent Technologiesz ABSTRACT allows non-linear transform coding and more flexible context modellings [11]. Various learning-based image compression Recently deep learning-based image compression has shown frameworks have been proposed in the last few years. the potential to outperform traditional codecs. However, most In [12, 13], a scheme involving a generalized divisive nor- existing methods train multiple networks for multiple bit rates, malization (GDN)-based nonlinear analysis transform, a uni- which increase the implementation complexity. In this paper, form quantizer, and an inverse GDN (IGDN)-based synthesis we propose a new variable-rate image compression framework, transform was proposed. The encoding network consists of which employs generalized octave convolutions (GoConv) and three stages of convolution and GDN layers. The decoding generalized octave transposed-convolutions (GoTConv) with network consists of three stages of transposed-convolution and built-in generalized divisive normalization (GDN) and inverse IGDN layers. Despite its simple architecture, it outperforms GDN (IGDN) layers. Novel GoConv- and GoTConv-based JPEG2000 in both PSNR and SSIM. residual blocks are also developed in the encoder and decoder networks. Our scheme also uses a stochastic rounding-based A compressive auto-encoder framework with residual con- scalar quantization. To further improve the performance, we nection as in ResNet (residual neural network) was proposed encode the residual between the input and the reconstructed in [5], where the quantization was replaced by smooth ap- image from the decoder network as an enhancement layer. To proximation, and a scaling approach was used to get different enable a single model to operate with different bit rates and rates. In [14], a soft-to-hard vector quantization approach was to learn multi-rate image features, a new objective function introduced, and a unified framework was developed for both is introduced. Experimental results show that the proposed image compression and neural network model compression. framework trained with variable-rate objective function outper- In [1], a deep semantic segmentation-based layered im- forms the standard codecs such as H.265/HEVC-based BPG age compression (DSSLIC) was proposed, by taking advan- and state-of-the-art learning-based variable-rate methods. tage of the Generative Adversarial Network (GAN). A low- dimensional representation and segmentation map of the in- Index Terms— learned image compression, variable-rate, put along with the residual between the input and the synthe- deep learning, residual coding, generalized octave convolu- sized image were encoded. It outperforms the BPG codec tions, multi-resolution autoencoder, multi-resolution image (RGB4:4:4) in both PSNR and MS-SSIM [15]. coding Most previous works used fixed entropy models shared be- tween the encoder and decoder. In [16], a conditional entropy 1. INTRODUCTION model based on Gaussian scale mixture (GSM) was proposed arXiv:2012.15463v1 [cs.CV] 31 Dec 2020 where the scale parameters were conditioned on a hyper-prior In the last few years, deep learning has made tremendous learned using a hyper auto-encoder. The compressed hyper- progresses in the well-studied topic of image compression. prior was transmitted and added to the bit stream as side in- Deep learning-based image compression [1, 2, 3, 4, 5, 6, 7] formation. The model in [16] was extended in [4, 17] where a has shown the potential to outperform standard codecs such as Gaussian mixture model (GMM) with both mean and scale pa- JPEG2000, the H.265/HEVC-based BPG image codec [8], and rameters conditioned on the hyper-prior was utilized. In these also the new versatile video coding test model (VTM) [9, 10], methods, the hyper-priors were combined with auto-regressive making it a very promising tool for the next-generation image priors generated using context models, which outperformed compression. BPG in terms of both PSNR and MS-SSIM. These approaches In traditional compression methods, many components are are jointly optimized to effectively capture the spatial depen- fixed and hand-crafted such as linear transform and entropy dencies and probabilistic structures of the latents, which lead coding. Deep learning-based approaches have the potential of to a significant compression performance. However, some automatically exploiting the data features; thereby achieving of these latents are spatially redundant. In [10], a learned better compression performance. In addition, deep learning multi-resolution image compression approach was proposed 1 H L Fig. 1: Overall framework of the proposed codec. x: input image; fE: deep encoder; fy ; y g: factorized code map (including H L high and low resolution maps); Q: uniform scalar quantizer; fy^ ; y^ g: quantized code map; fD: deep decoder; x¯: generated image by the deep decoder; r: residual image; r0: decoded residual image; x~: final reconstructed image. that uses generalized octave convolutions (GoConv) and gener- based residual sub-networks are also developed in the encoder alized octave transposed-convolutions (GoTConv) to factorize and decoder networks, by incorporating separate shortcut con- the latents into high and low resolutions. As a result, the spa- nection for HR and LR feature maps. Our scheme uses the tial redundancy corresponding to the latents is reduced, which stochastic rounding-based scalar quantization as in [18, 22, 23]. improves the compression performance. As in [21], to further improve the performance, we encode the Since most learned image compression methods need to residual between the input and the reconstructed image from train multiple networks for multiple bit rates, variable-rate the decoder network by BPG as an enhancement layer. To image compression approaches have also been proposed in enable a single model to operate with different bit rates and to which a single neural network model is trained to operate at learn multi-rate image features, a new variable-rate objective multiple bit rates. This approach was first introduced in [18], function is introduced [21]. Experimental results show that the which was then generalized for full-resolution images using proposed framework trained with variable-rate objective func- deep learning-based entropy coding in [6]. tion outperforms the standard codecs including H.265/HEVC- In [18], long short-term memory (LSTM)-based recurrent based BPG in the more challenging YUV4:2:0 and YUV4:4:4 neural networks (RNNs) and residual-based layer coding was formats, as well as state-of-the-art learning-based variable-rate used to compress thumbnail images. Better SSIM results than methods in terms of MS-SSIM metric. JPEG and WebP were reported. This approach was gener- This paper is organized as follows. The architecture of the alized in [6], which proposed a variable-rate framework for proposed deep encoder and decoder networks will be described full-resolution images by introducing a gated recurrent unit, in Section 2.1. Following that, the formulation of the deep residual scaling, and deep learning-based entropy coding. This encoder and decoder are presented in Sections 2.2 and 2.4. method can outperform JPEG in terms of PSNR. In Section 2.6, the objective functions are formulated and In [19], a CNN-based multi-scale decomposition transform explained. Finally, we will present the experimental results on was optimized for all scales. Rate allocation algorithms were Kodak image set as well as the ablation studies in Section 3. also applied to determine the optimal scale of each image block. The results in [19] were reported to be better than BPG in MS- SSIM. In [20], a learned progressive image compression model was proposed, in which bit-plane decomposition was adopted. 2. THE PROPOSED METHOD Bidirectional assembling gated units were also introduced to reduce the correlation between different bit-planes [20]. The overall framework of the proposed codec is shown in Fig. In [21], we proposed a variable-rate image compression 1. At the encoder side, two layers of information are encoded: scheme, by applying GDN-based residual blocks as in ResNet the encoder network output (code map) and the residual image. and two novel multi-bit objective functions. The residual be- The code map is composed of HR and LR parts denoted by H L tween the input and the reconstructed image was also encoded fy ; y g, which are obtained by the deep encoder fE. The by BPG to further improve the performance. Experimental maps are quantized by a uniform scalar quantizer Q, and then results show that our variable-rate model can outperform state- separately encoded by the FLIF lossless codec [24]. The of-the-art learning-based variable-rate methods. reconstruction of the input image (denoted by x¯) is obtained H L In this paper, we extend and improve our previous ap- from the quantized maps fy^ ; y^ g by the deep decoder fD. proach in [21] and propose a new deep learning-based multi- To further improve the performance, the residual r between the resolution variable-rate image compression framework, which input and the reconstruction is encoded by the BPG codec as an employs GoConv and GoTConv layers developed in [10] to enhancement layer [1]. At the decoder side, the reconstruction factorize all the feature maps into high resolution (HR) and x¯ from the deep decoder and the decoded residual image r0 low resolution (LR) information. Two novel types of octave- are added to get the final reconstruction x~. 2 Fig. 2: Architecture of the proposed deep encoder and deep decoder networks. GoConv/GoTConv (n, k×k, s): generalized octave convolutions and transposed-convolutions with n filters of size k×k and stride of s. GoRes/GoTRes (n): GoConv- and GoTConv-based residual blocks with n filters.
Recommended publications
  • Versatile Video Coding – the Next-Generation Video Standard of the Joint Video Experts Team
    31.07.2018 Versatile Video Coding – The Next-Generation Video Standard of the Joint Video Experts Team Mile High Video Workshop, Denver July 31, 2018 Gary J. Sullivan, JVET co-chair Acknowledgement: Presentation prepared with Jens-Rainer Ohm and Mathias Wien, Institute of Communication Engineering, RWTH Aachen University 1. Introduction Versatile Video Coding – The Next-Generation Video Standard of the Joint Video Experts Team 1 31.07.2018 Video coding standardization organisations • ISO/IEC MPEG = “Moving Picture Experts Group” (ISO/IEC JTC 1/SC 29/WG 11 = International Standardization Organization and International Electrotechnical Commission, Joint Technical Committee 1, Subcommittee 29, Working Group 11) • ITU-T VCEG = “Video Coding Experts Group” (ITU-T SG16/Q6 = International Telecommunications Union – Telecommunications Standardization Sector (ITU-T, a United Nations Organization, formerly CCITT), Study Group 16, Working Party 3, Question 6) • JVT = “Joint Video Team” collaborative team of MPEG & VCEG, responsible for developing AVC (discontinued in 2009) • JCT-VC = “Joint Collaborative Team on Video Coding” team of MPEG & VCEG , responsible for developing HEVC (established January 2010) • JVET = “Joint Video Experts Team” responsible for developing VVC (established Oct. 2015) – previously called “Joint Video Exploration Team” 3 Versatile Video Coding – The Next-Generation Video Standard of the Joint Video Experts Team Gary Sullivan | Jens-Rainer Ohm | Mathias Wien | July 31, 2018 History of international video coding standardization
    [Show full text]
  • Overview of Technologies for Immersive Visual Experiences: Capture, Processing, Compression, Standardization and Display
    Overview of technologies for immersive visual experiences: capture, processing, compression, standardization and display Marek Domański Poznań University of Technology Chair of Multimedia Telecommunications and Microelectronics Poznań, Poland 1 Immersive visual experiences • Arbitrary direction of viewing System : 3DoF • Arbitrary location of viewer - virtual navigation - free-viewpoint television • Both System : 6DoF Virtual viewer 2 Immersive video content Computer-generated Natural content Multiple camera around a scene also depth cameras, light-field cameras Camera(s) located in a center of a scene 360-degree cameras Mixed e.g.: wearable cameras 3 Video capture Common technical problems • Synchronization of cameras Camera hardware needs to enable synchronization Shutter release error < Exposition interval • Frame rate High frame rate needed – Head Mounted Devices 4 Common task for immersive video capture: Calibration Camera parameter estimation: • Intrinsic – the parameters of individual cameras – remain unchanged by camera motion • Extrinsic – related to camera locations in real word – do change by camera motion (even slight !) Out of scope of standardization • Improved methods developed 5 Depth estimation • By video analysis – from at least 2 video sequences – Computationally heavy – Huge progress recently • By depth cameras – diverse products – Infrared illuminate of the scene – Limited resolution mostly Out of scope of standardization 6 MPEG Test video sequences • Large collection of video sequences with depth information
    [Show full text]
  • Versatile Video Coding (VVC)
    Versatile Video Coding (VVC) on the final stretch Benjamin Bross Fraunhofer Heinrich Hertz Institute, Berlin ITU Workshop on “The future of media” © Geneva, Switzerland, 8 October 2019 Versatile Video Coding (VVC) Joint ITU-T (VCEG) and ISO/IEC (MPEG) project Coding Efficiency Versatility 50% over H.265/HEVC Screen content HD / UHD / 8K resolutions Adaptive resolution change 10bit / HDR Independent sub-pictures 2 VVC – Coding Efficiency History of Video Coding Standards H.261 JPEG H.265 / H.264 / H.262 / (1991) (1990) PSNR MPEG-HEVC MPEG-4 AVC MPEG-2 (dB) (2013) (2003) (1995) 40 38 Bit-rate Reduction: 50% 35 36 34 32 30 28 0 100 200 300 bit rate (kbit/s) 3 VVC – Coding Efficiency History of Video Coding Standards H.261 JPEG H.265 / H.264 / H.262 / (1991) (1990) PSNR MPEG-HEVC MPEG-4 AVC MPEG-2 (dB) (2013) (2003) (1995) 40 38 36 Do we need more efficient video coding? 34 32 30 28 0 100 200 300 bit rate (kbit/s) 4 VVC – Coding Efficiency Jevons Paradox "The efficiency with which a resource is used tends to increase (rather than decrease) the rate of consumption of that resource." 5 VVC – Coding Efficiency Target for the final VVC standard H.262 / H.261 JPEG H.??? / H.265 / H.264 / MPEG-2 (1991) (1990) PSNR MPEG-VVC MPEG-HEVC MPEG-4 AVC (dB) (2013) (2003) (1995) 40 38 36 35 Bit-rate Reduction Target: 50% 34 32 30 28 0 100 200 300 bit rate (kbit/s) 6 VVC – Timeline 2015 Oct. – Exploration Phase • Joint Video Exploration Team (JVET) of ITU-T VCEG and ISO/IEC MPEG established October ‘15 in Geneva • Joint Video Exploration Model (JEM) as software playground to explore new coding tools • 34% bitrate savings for JEM relative to HEVC provided evidence to start a new joint standardization activity with a… 2017 Oct.
    [Show full text]
  • Download Recent and Forthcoming Books from This Series
    River Publishers Book Catalogue Series in Signal, Image and Speech Processing River Publishers Series in Signal, Image and Speech Processing Digital Video Coding for Next Generation Multimedia H.264, HEVC, VVC, EVC Video Compression Authors: Shreyanka Subbarayappa, Ramaiah University of Applied Sciences, India K. R. Rao, University of Texas at Arlington, Texas, U.S.A Humberto Ochoa Domínguez, Universidad Autónoma de Ciudad Juárez, México ISBN: 9788770224215 e-ISBN: 9788770224208 Available From: January 2022 Price: € 98.50 Description: Innovations in communication systems and technology are growing tremendously. In multimedia communication systems, technology has transformed from analog television to digital television in the video domain. Mobile phones are known as smart phones as they are used, not only to make voice calls, but also used to send emails, video calls, transfer data, GPS, taking pictures and so on. Due to the widespread user applications, compression of data becomes important to save system resources. Video occupies 75% of data transfer traffic and is expected to cover 80% by the end of 2021. Video is also continuously increasing in file size from standard definition (SD) to ultra-high definition (UHD - 4K, 8K and 12K) video. More data or size in video requires higher transmission bandwidth or more disk space to store which can be slow and expensive. This drives the improvements in compression and hence the demand for a new codec. Several algorithms are used to achieve compression of Image or Video files, these algorithms working together are classified in terms of codecs and we use different codecs for different applications. Advances in video compression technology reduce the utilization of system resources, like processing time, memory use, network bandwidth and battery life.
    [Show full text]
  • Kompresja Statycznego Obrazu 138
    Damian Karwowski Zrozumieć Kompresję Obrazu Podstawy Technik Kodowania Stratnego oraz Bezstratnego Obrazów Wydanie Pierwsze, wersja 1.2 Poznań 2019r. ISBN 978-83-953420-0-4 9 788395 342004 © Damian Karwowski – „Zrozumieć Kompresję Obrazu” © Copyright by DAMIAN KARWOWSKI. All rights reserved. Książka jest chroniona prawem autorskim i prawami pokrewnymi. Egzemplarz książki został zdeponowany w Kancelarii Notarialnej. Książka jest dostępna pod adresem: www.zrozumieckompresje.pl ISBN 978-83-953420-0-4 Projekt okładki książki oraz strona internetowa zostały wykonane przez Marka Piskulskiego. Serdecznie dziękuję za profesjonalną pracę Obraz „Miś Panda”, który jest częścią okładki, namalowała na płótnie Natalka Karwowska. Natalko, dziękuję Ci za Twój wysiłek Autor książki dołożył ogromnych starań, żeby zamieszczone w niej informacje były prawdziwe i rzetelnie przedstawione. Korzystając z książki Czytelnik robi to jednak wyłącznie na własną odpowiedzialność. Tym samym autor nie odpowiada za jakiekolwiek szkody, będące następstwem wykorzystania zawartej w książce wiedzy. Autor książki Dr inż. Damian Karwowski. Absolwent Politechniki Poznańskiej. Uzyskał tytuł zawodowy magistra inżyniera oraz stopień doktora nauk technicznych na Politechnice Poznańskiej, odpowiednio w latach 2003 i 2008. Obecnie pracownik naukowo-dydaktyczny na wyżej wymienionej uczelni. Od roku 2003 zawodowo zajmuje się kompresją obrazu. Autor ponad 50 publikacji naukowych o tematyce kompresji i przetwarzania obrazów. Brał udział w licznych projektach naukowych dotyczących wydajnej reprezentacji multimedialnych danych. Dodatkowo członek wielu zespołów badawczych, które w tematyce kompresji obrazu i dźwięku realizowały prace badawczo-wdrożeniowe dla przemysłu. Jego zainteresowania obejmują kompresję danych, techniki kodowania entropijnego danych oraz realizację kodeków obrazu i dźwięku na procesorach x86 oraz DSP. 4 | S t r o n a © Damian Karwowski – „Zrozumieć Kompresję Obrazu” Spis treści Spis treści 5 “Słowo” wstępu 11 Rozdział 1 15 Obraz i jego reprezentacja przestrzenna 15 1.1.
    [Show full text]
  • Contribuições À Codificação Eficiente De Imagem E Vídeo Utilizando Recorrência De Padrões Multiescala
    CONTRIBUIÇÕES À CODIFICAÇÃO EFICIENTE DE IMAGEM E VÍDEO UTILIZANDO RECORRÊNCIA DE PADRÕES MULTIESCALA Nelson Carreira Francisco Tese de Doutorado apresentada ao Programa de Pós-graduação em Engenharia Elétrica, COPPE, da Universidade Federal do Rio de Janeiro, como parte dos requisitos necessários à obtenção do título de Doutor em Engenharia Elétrica. Orientadores: Eduardo Antônio Barros da Silva Nuno Miguel Morais Rodrigues Rio de Janeiro Novembro de 2012 CONTRIBUIÇÕES À CODIFICAÇÃO EFICIENTE DE IMAGEM E VÍDEO UTILIZANDO RECORRÊNCIA DE PADRÕES MULTIESCALA Nelson Carreira Francisco TESE SUBMETIDA AO CORPO DOCENTE DO INSTITUTO ALBERTO LUIZ COIMBRA DE PÓS-GRADUAÇÃO E PESQUISA DE ENGENHARIA (COPPE) DA UNIVERSIDADE FEDERAL DO RIO DE JANEIRO COMO PARTE DOS REQUISITOS NECESSÁRIOS PARA A OBTENÇÃO DO GRAU DE DOUTOR EM CIÊNCIAS EM ENGENHARIA ELÉTRICA. Examinada por: Prof. Eduardo Antônio Barros da Silva, Ph.D. Prof. Nuno Miguel Morais Rodrigues, Ph.D Prof. Sérgio Lima Netto, Ph.D. Prof. José Gabriel Rodriguez Carneiro Gomes, Ph.D. Prof. Ricardo Lopes de Queiroz, Ph.D Prof. Carla Liberal Pagliari, Ph.D RIO DE JANEIRO, RJ – BRASIL NOVEMBRO DE 2012 Francisco, Nelson Carreira Contribuições à Codificação Eficiente de Imagem e Vídeo Utilizando Recorrência de Padrões Multiescala/Nelson Carreira Francisco. – Rio de Janeiro: UFRJ/COPPE, 2012. XXII, 270 p.: il.; 29, 7cm. Orientadores: Eduardo Antônio Barros da Silva Nuno Miguel Morais Rodrigues Tese (doutorado) – UFRJ/COPPE/Programa de Engenharia Elétrica, 2012. Referências Bibliográficas: p. 257 – 270. 1. Casamento de Padrões Multiescalas. 2. Compressão de imagens estáticas. 3. Compressão de Documentos Compostos. 4. Compressão de Vídeo. 5. Filtragem de Redução de Efeito de Bloco. I. da Silva, Eduardo Antônio Barros et al.
    [Show full text]
  • Abkürzungs-Liste ABKLEX
    Abkürzungs-Liste ABKLEX (Informatik, Telekommunikation) W. Alex 1. Juli 2021 Karlsruhe Copyright W. Alex, Karlsruhe, 1994 – 2018. Die Liste darf unentgeltlich benutzt und weitergegeben werden. The list may be used or copied free of any charge. Original Point of Distribution: http://www.abklex.de/abklex/ An authorized Czechian version is published on: http://www.sochorek.cz/archiv/slovniky/abklex.htm Author’s Email address: [email protected] 2 Kapitel 1 Abkürzungen Gehen wir von 30 Zeichen aus, aus denen Abkürzungen gebildet werden, und nehmen wir eine größte Länge von 5 Zeichen an, so lassen sich 25.137.930 verschiedene Abkür- zungen bilden (Kombinationen mit Wiederholung und Berücksichtigung der Reihenfol- ge). Es folgt eine Auswahl von rund 16000 Abkürzungen aus den Bereichen Informatik und Telekommunikation. Die Abkürzungen werden hier durchgehend groß geschrieben, Akzente, Bindestriche und dergleichen wurden weggelassen. Einige Abkürzungen sind geschützte Namen; diese sind nicht gekennzeichnet. Die Liste beschreibt nur den Ge- brauch, sie legt nicht eine Definition fest. 100GE 100 GBit/s Ethernet 16CIF 16 times Common Intermediate Format (Picture Format) 16QAM 16-state Quadrature Amplitude Modulation 1GFC 1 Gigabaud Fiber Channel (2, 4, 8, 10, 20GFC) 1GL 1st Generation Language (Maschinencode) 1TBS One True Brace Style (C) 1TR6 (ISDN-Protokoll D-Kanal, national) 247 24/7: 24 hours per day, 7 days per week 2D 2-dimensional 2FA Zwei-Faktor-Authentifizierung 2GL 2nd Generation Language (Assembler) 2L8 Too Late (Slang) 2MS Strukturierte
    [Show full text]
  • ITU Contribution to the Implementation of the WSIS Outcomes: 2020 Draft Zero As of 7/12/2020
    ITU Contribution to the Implementation of the WSIS Outcomes: 2020 Draft Zero as of 7/12/2020 Table of Contents Page I. Introduction ......................................................................................................................... 5 II. WSIS Action Lines and the 2030 Agenda for Sustainable Development ................................... 7 (a) High Level Political Forum (HLPF) 2020 ................................................................................... 7 (b) WSIS Action Lines and SDG Matrix .......................................................................................... 9 III. Overview of ITU activities and projects undertaken since 2020 in the context of the implementation of WSIS Outcomes, also related to the 2030 agenda for Sustainable Development …………………………………………………………………………………………………………………………………………10 (a) Lead facilitator (along with UNESCO and UNDP) in organizing the multistakeholder implementation of the Geneva Plan of Action. ................................................................................. 10 (b) Facilitator of the WSIS Action Lines C2, C5, C6 ..................................................................... 15 Action Line C2: Information and Communication Infrastructure ................................................. 15 Action Line C5: Building Confidence and Security in the use of ICTs ............................................ 92 Action Line C6: Enabling Environment ........................................................................................ 113
    [Show full text]
  • Short Distance Intra Prediction of Screen Content in Versatile Video Coding (VVC) Mohsen Abdoli, Felix Henry, Patrice Brault, Pierre Duhamel, Frédéric Dufaux
    Short Distance Intra Prediction of Screen Content in Versatile Video Coding (VVC) Mohsen Abdoli, Felix Henry, Patrice Brault, Pierre Duhamel, Frédéric Dufaux To cite this version: Mohsen Abdoli, Felix Henry, Patrice Brault, Pierre Duhamel, Frédéric Dufaux. Short Distance Intra Prediction of Screen Content in Versatile Video Coding (VVC). IEEE Signal Processing Letters, Insti- tute of Electrical and Electronics Engineers, 2018, 25 (11), pp.1690-1694. 10.1109/LSP.2018.2871872. hal-01876742 HAL Id: hal-01876742 https://hal.archives-ouvertes.fr/hal-01876742 Submitted on 10 Jan 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. IEEE SIGNAL PROCESSING LETTERS, VOL. X, NO. X, MONTH 2018 1 Short Distance Intra Prediction of Screen Content in Versatile Video Coding (VVC) Mohsen Abdoli, Felix´ Henry, Patrice Brault, Senior Member, Pierre Duhamel, Fellow, IEEE and Fred´ eric´ Dufaux, Fellow, IEEE Abstract—A novel intra prediction algorithm is proposed to A. New tools and features improve the coding performance of screen content for the JVET consists of an exploration phase and a standardization emerging Versatile Video Coding (VVC) standard. The algorithm, called In-Loop Residual coding with Scalar Quantization (ILR- phase.
    [Show full text]
  • Neural Video Coding Using Multiscale Motion Compensation and Spatiotemporal Context Model
    1 Neural Video Coding using Multiscale Motion Compensation and Spatiotemporal Context Model Haojie Liu1, Ming Lu1, Zhan Ma1, Fan Wang2, Zhihuang Xie2, Xun Cao1, and Yao Wang3 1 Nanjing University, 2 OPPO.Inc, 3 New York University Abstract—Over the past two decades, traditional block-based bit rate consumption at the same reconstruction quality. This video coding has made remarkable progress and spawned a is well formulated as the minimization of Lagrangian cost J series of well-known standards such as MPEG-4, H.264/AVC of rate-distortion optimization (RDO) that is widely adopted and H.265/HEVC. On the other hand, deep neural networks (DNNs) have shown their powerful capacity for visual content in existing video coders, e.g., understanding, feature extraction and compact representation. min J = R + λ · D; (1) Some previous works have explored the learnt video coding algorithms in an end-to-end manner, which show the great with R and D represent the compressed bit rates and recon- potential compared with traditional methods. In this paper, we structed distortion respectively. propose an end-to-end deep neural video coding framework (NVC), which uses variational autoencoders (VAEs) with joint Motivation. Over the past three decades, video compres- spatial and temporal prior aggregation (PA) to exploit the sion technologies have been evolving and adapting con- correlations in intra-frame pixels, inter-frame motions and inter- stantly with coding efficiency improved by several folds, frame compensation residuals, respectively. Novel features of mostly driven under the efforts from the experts in ISO/IEC NVC include: 1) To estimate and compensate motion over a Moving Picture Experts Group (MPEG), ITU-T Video Cod- large range of magnitudes, we propose an unsupervised multi- scale motion compensation network (MS-MCN) together with a ing Experts Group (VCEG) and their joint task forces.
    [Show full text]
  • Técnicas Forenses Y Anti-Forenses Para El Análisis De La Integridad Del Contenido Y De La Fuente De Adquisición En Vídeos Digitales De Dispositivos Móviles
    UNIVERSIDAD COMPLUTENSE DE MADRID FACULTAD DE INFORMÁTICA TESIS DOCTORAL Técnicas Forenses y Anti-Forenses para el Análisis de la Integridad del Contenido y de la Fuente de Adquisición en Vídeos Digitales de Dispositivos Móviles MEMORIA PARA OPTAR AL GRADO DE DOCTOR PRESENTADA POR Carlos Quinto Huamán Directores Luis Javier García Villalba Ana Lucila Sandoval Orozco Madrid ©Carlos Quinto Huamán, 2020 UNIVERSIDAD COMPLUTENSE DE MADRID FACULTAD DE INFORMÁTICA TESIS DOCTORAL Técnicas Forenses y Anti-Forenses para el Análisis de la Integridad del Contenido y de la Fuente de Adquisición en Vídeos Digitales de Dispositivos Móviles MEMORIA PARA OPTAR AL GRADO DE DOCTOR PRESENTADA POR Carlos Quinto Huamán Directores Luis Javier García Villalba Ana Lucila Sandoval Orozco Madrid, 2020 Técnicas Forenses y Anti-Forenses para el Análisis de la Integridad del Contenido y de la Fuente de Adquisición en Vídeos Digitales de Dispositivos Móviles TESIS DOCTORAL Memoria presentada para obtener el título de Doctor por la Universidad Complutense de Madrid en el Programa de Doctorado en Ingeniería Informática Carlos Quinto Huamán Directores Luis Javier García Villalba Ana Lucila Sandoval Orozco Facultad de Informática Universidad Complutense de Madrid Madrid, Septiembre de 2020 Tesis Doctoral presentada por el doctorando Carlos Quinto Huamán en la Facultad de Informática de la Universidad Complutense de Madrid para la obtención del título de Doctor por la Universidad Complutense de Madrid en el Programa de Doctorado en Ingeniería Informática. Terminada en Madrid
    [Show full text]
  • Volume 5, Number 1, December 2020
    VOL. 5 NO. 1 DECEMBER 2020 JOURNAL OF DIGITAL VIDEO VOLUME 5, NUMBER 1 December 2020 Society of Cable Telecommunications Engineers, Inc. International Society of Broadband Experts™ 140 Philips Road, Exton, PA 19341-1318 © 2020 by the Society of Cable Telecommunications Engineers, Inc. All rights reserved. As complied, arranged, modified, enhanced and edited, all license works and other separately owned materials contained in this publication are subject to foregoing copyright notice. No part of this journal shall be reproduced, stored in a retrieval system or transmitted by any means, electronic, mechanical, photocopying, recording or otherwise, without written permission from the Society of Cable Telecommunications Engineers, Inc. No patent liability is assumed with respect to the use of the information contained herein. While every precaution has been taken in the preparation of the publication, SCTE assumes no responsibility for errors or omissions. Neither is any liability assumed for damages resulting from the use of the information contained herein. Table of Contents 4 From the Editor SCTE•ISBE Engineering 5 All Coming Together: A Collaborative Effort To Committee Chair: Achieve Comprehensive End-To-End Ad Monitoring David Fellows, Mourad Kioumgi, VOD Solutions Architect, Sky UK, Sky Group, Comcast SCTE•ISBE Member Chris Hock, Head of Business Strategy and Development, Media & Entertainment, Adobe SCTE•ISBE Digital Video Dan Murray, Director, Product Marketing, Video Solutions, Subcommittee (DVS) Contributor, Telestream Committee Chair: Xavier Denis, Director, IP Ad Insertion Products, Contributor, CommScope Paul Hearty, Ph.D. Technology Advisors 24 Taming Video Spectrum Management For SCTE•ISBE Member Distributed Access Architecture (R-PHY And R-MACPHY) Christopher Poli, P.E., Sr.
    [Show full text]