Binary Search-Soni Yora
Binary Search-Soni Yora
Soni Yora
2301181009
1
INDEX
1 Introduction
5
1. Introduction
Binary search this is one of the algorithms that are
very popular for motion estimation & used by MPEG-
Tool. The basic idea behind this algorithm is to divide
the search window into a number of regions and do a
full search only in one of these regions. The cost
function is evaluated on a grid of 9 pixels that include
the centre, the four corners of the search window and
four pels at the boundaries. The search window is
divided into regions based on these points.A full
search is performed in the region corresponding to
the point with the smallest value.
3
2. BSA Outline
4 4/30/2019
Steps
5
Complexity
If minimum BDM point is found at the center, corner
and middle of the search window then the number
of checking points required for BSA is 25+9=33 for
the worst case, 8+9=17 for the best case.
6 4/30/2019