I'm trying to find out fast motion estimation algorithm used in vp9, kindly help me out. As no documentation is available although it's open source but I couldn't find anything relevant.
Fast Motion Estimation Algorithm used in VP9?
284 Views Asked by Shumail Shahid At
1
There are 1 best solutions below
Related Questions in ALGORITHM
- Two different numbers in an array which their sum equals to a given value
- Given two arrays of positive numbers, re-arrange them to form a resulting array, resulting array contains the elements in the same given sequence
- Time complexity of the algorithm?
- Find a MST in O(V+E) Time in a Graph
- Why k and l for LSH used for approximate nearest neighbours?
- How to count the number of ways of choosing of k equal substrings from a List L(the list of All Substrings)
- Issues with reversing the linkedlist
- Finding first non-repeating number in integer array
- Finding average of an array
- How to check for duplicates with less time in a list over 9000 elements by python
- How to pick a number based on probability?
- Insertion Sort help in javascript -- Khan Academy
- Developing a Checkers (Draughts) engine, how to begin?
- Can Bellman-Ford algorithm be used to find shorthest path on a graph with only positive edges?
- What is the function for the KMP Failure Algorithm?
Related Questions in CODEC
- OpenCV VideoWriter ffmpeg again and again
- I am using ffmpeg library in my program to record video and audio
- Unicode decode error with .csv file
- How to read all video type in a video tag
- Trouble reading in Unicode strings from CSV file to DictReader in Python
- Can't open video using opencv
- Java Code to Open a password protected zip file which is opening only with 7zx and keka in mac OS
- What video encoder gives best performance on an Android device for given quality?
- HTML5 Video MP4 Codec Settings
- Intel realsense cam on win 7
- How to encode and shorten hash for url safety?
- how opus adapts to variable bandwidth?
- how to find video and audio stream times without the deprecated values? Fork: libav 10.5
- Colon operator in C/C++
- Expanding media capabilities of Win Embedded CE 6.0
Related Questions in VP9
- VP9 encoding limited to 4 threads?
- Can ffmpeg extract the motion vectors from VP9 videos?
- Fast Motion Estimation Algorithm used in VP9?
- WebM/VP9 support in Firefox
- How to set the Microsoft WMF VP9 decoder to decode VP9 videos
- How to convert the AVPacket of ffmpeg to the webm stream with c++ code?
- ffmpeg H.264 to VP9 always creates larger output files on Zoom Meeting Recordings
- encode YUV420 frame to VP9
- Mpeg1, vp9, theora and h264 intra lossless encoding strange results
- FFMPEG with VP9 + RTSP
- WebRTC Chrome 48 VP9 preference
- How to use ffmpeg to calculate the ssim value of compressed VP8/VP9 video?
- ffmpeg refuses to encode video
- Real-time VP9 encoding using libvpx
- How to conver/compress VP9 video/Webm 12bit video to Webm 10bit video with ffmpeg?
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?
As with typical video standards, there is no motion estimation algorithm in VP9, the standardized parts are the bitstream and how to decode it. Of course the encoders implement some motion estimation algorithm(s) (usually configurable so the user can choose their speed/quality trade-off), but since the standard doesn't cover encoders that is not part of VP9. For the decoder it does not matter how motion vectors were chosen, it only matters what the result was.
You can get the latest version of the standard from this website.
In libvpx in vp9_mcomp.c, it is visible which algorithms that specific encoder uses, which includes several diamond searches (with varying accuracy/time trade-offs including N-step diamond search), two hexagon-based searches, square search, and even exhaustive search. There's integral projection motion estimation in it too but it seems to be used only in a special case.