MPEG-1 quantizes both inter-frames and intra-frames, however I am curious why the quantization table for inter-frames are all constants, whereas the default quantization table for intra-frames is not.
MPEG-1 Video Compression Quantization
431 Views Asked by Petrov At
1
There are 1 best solutions below
Related Questions in MPEG
- Frame rate control of a ts file
- Change data in intra frame of MPEG file in matlab
- How to port mp3 code to a ARM board
- MPEG2TS container format
- Compiling Mpeg-7 XM Software on Windows
- Coding a certain MP4 GOP with FFMPEG
- Php output continuous stream
- What is a damaged MPEG stream?
- MPEG4 videos cannot be played on iOS14 (AVPlayer issue)
- How can I display a video of mpeg encoded data in WPF?
- Extracting I-Frames from MPEG 2
- Java: How do I create a movie from an array of images?
- MPEG1 motion estimation / compensation
- Implementation of the MPEG-4 standard Part 16 (Animation Framework Extension)
- How I can control speed of one song with libmpg123?
Related Questions in IMAGE-COMPRESSION
- Effective JPEG compression for HF content?
- Bit-rate calculation in Jpeg2000 image compression
- Google Page Insight: mobile score 100 .. desktop 80 same images
- How to use 'compression_encode_buffer' in Swift?
- Size of compressed textures in vulkan
- Base64 image compression before sending it to Cloudinary
- compressing already compressed image in android open gl
- How to prevent memory increase on Image Compression
- Run-Length encoding image compression in Java
- Java Bitmap RLE8 format
- Java EOFException when using BMPImageReader after performing RLE compression on Byte Array
- The images are different even though they are saved to the same quality
- Compress movies of flat plots of few points and lines in Matlab (why are they so heavy?)
- Compress image using Huffman coding in Java
- Compressing png images using PHP
Related Questions in QUANTIZATION
- Normalization image rgb
- Generate color palette from image with ImageMagick
- Calculate Quantization error in MATLAB
- What does this formula mean?
- TensorFlow: Quantization Error "Analysis of target '//tensorflow/tools/graph_transforms:transform_graph' failed; build aborted."
- How do I quantize a three-band color image into a color image using logarithmic function in MATLAB
- JH Labs Quantize Usage to reduce image color depth
- Finding number of quantizing layers in MATLAB
- Range in DCT coefficents MATLAB
- Gesture recognition using hidden markov model
- Quantization Step Size or Quantization factor
- Port pytorch code to tf2.0: equivalent of x_batch.requires_grad = True in tf2.0?
- QAT output nodes for Quantized Model got the same min max range
- Question about inconsistency between tensorflow lite quantization code, paper and documentation
- How to convert TFLite model to quantized TFLite model?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This is because inter-frames contains only error residuals after subtracting predicted image from source image. Such residuals have almost uniform frequency distribution (if prediction ie. motion estimation is made correctly). For these frames we use uniform quantization matrices.
In contrast, intra-frames have very high power of low frequencies, they are hard to compress because of they enormous amplitudes. For these unpredicted frames we use low-frequency centered quantization matrices.