Draft:Binary Robust Independent Elementary Features
Image feature descriptor
From Wikipedia, the free encyclopedia
Binary Robust Independent Elementary Features (BRIEF) is an feature descriptor used in computer vision for object detection.[1] Its goal is to replace SIFT and SURF in environments with limited resources. This is done by using a binary string for the descriptor, which can be compared efficiently using Hamming distance. BRIEF itself is merely a feature descriptor, to use it for object detection it needs to be paired with a separate algorithm for key point detection like FAST in ORB.[2]
Review waiting, please be patient.
This may take 2 months or more, since drafts are reviewed in no specific order. There are 4,288 pending submissions waiting for review.
Where to get help
How to improve a draft
You can also browse Wikipedia:Featured articles and Wikipedia:Good articles to find examples of Wikipedia's best writing on topics similar to your proposed article. Improving your odds of a speedy review To improve your odds of a faster review, tag your draft with relevant WikiProject tags using the button below. This will let reviewers know a new draft has been submitted in their area of interest. For instance, if you wrote about a female astronomer, you would want to add the Biography, Astronomy, and Women scientists tags. Editor resources
Reviewer tools
|
Algorithm
The descriptor for an image region is built by comparing the intensity of pixels within the region. The region is smoothed before comparing pixels in order to make the descriptor more robust to noise. The comparisons are done using the following function:
where is the intensity of the smoothed pixel, and and are coordinates of the pixels to be compared.[1] This is then done for a set of pairs of , resulting in a -bit descriptor. These pairs can be selected by sampling from a two-dimensional probability distribution.
