Feature Detection And Matching
How Outliers are Removed?
The matched features between the images have a euclidean distance. Features with euclidean distance beyond the average euclidean or a specified threshold are removed as outliers.
SIFT(Lowe, 2004):
Detects special features regardless of the scale and orientation of the image, and allows you to reliably detect the same special features even in slightly distorted images, adding noise or changing the lighting and / or viewing point. SIFT detects potentially specific features, and measures the stability of these properties and determines their magnitude by eliminating unstable properties. Then, according to the local gradient direction, for each specific feature, one or more orientations are calculated and assigned. With this information, image data properties can be normalized to scale, position and orientation - so the properties become scalable with respect to these transformations. The method also includes a descriptor, which detects the special properties described by the 128-dimensional vectors. The gradient values and orientations are initially calculated for the position of the surrounding object, using the Gaussian filter for the entire image. Then the descriptor's coordinates and gradient orientations are rotated before they are detected in the direction of the special properties. So the descriptor maintains a normalized orientation of the special characteristic.SURF (Bay et al., 2006):
Uses second-order Gaussian derivative approximations with a box filter, thus losing some accuracy, but significantly shortening the calculation time. Detecting properties at different image scales, in contrast to SIFT, does not need to use a Gaussian filter, but it is enough to change the size of the box used, again avoiding expensive time calculations. SURF descriptors only use the 64-dimensional vector, which is easier to generate and compare, but saves less information that may be useful in itself.FAST is a method for corner detection (Rosten and Drummond, 2006). The main feature of this detector is the speed. The FAST method is available in real-time (using only 7% of the time for single- frame processing) to detect corners in a PAL format video. The algorithm is characterized by speed, but is not resistant to large noise quantities in pictures, and results depend on the choice of threshold value.
MSER (Matas et al., 2004) detects specific regions of an image, which form a set of interconnected image points that make up the contour after the thresholding of the image. The intensity of all points within these regions is either lighter or darker than the points on the contour. Such regions are invariant to scaling, lighting, orientation and viewing point transforms.
Comments
Post a Comment