Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
370 views
in Technique[技术] by (71.8m points)

mpeg - Are B, P frames results of the motion estimation/compression?

Confused about the relationship between MPEG frames and motion estimation/compensation :(

Are B, P frames results of the motion estimation/compression? But motion estimation/ compression use those frames. Then how and who decide the frames?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There are actually 3 types of frames:

  • I-frame Intra-coded (independent) frame, the least compressed
  • P-frame Predicted frame: uses precedent frames to improve compression
  • B-frame Bi-directional frame: uses both previous and next frames for the best compression

These frames are indeed the result of compression by the encoder, which is done in different steps, roughly (not exhaustive):

  • Reduce color nuances & resolution of images
  • Remove imperceptible details
  • Compare adjacent images and remove redundant informations (i.e. unchanged items between 2 images)
  • [...]

There is a good article on wikipedia. You can find more asking google on I/P/B frames ;)

Also checkout this answer related to your question.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...