Next Article in Journal
Erratum: Barchi, G. et al. Predictive Energy Control Strategy for Peak Switch and Shifting Using BESS and PV Generation Applied to the Retail Sector. Electronics 2019, 8, 526
Previous Article in Journal
Adaptive Transmit Power Control Algorithm for Sensing-Based Semi-Persistent Scheduling in C-V2X Mode 4 Communication
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Hardware Friendly Robust Synthetic Basis Feature Descriptor

1
School of Electronics and Information Technology, Sun Yat-sen University, Guangzhou 510006, China
2
Department of Electrical and Computer Engineering, Brigham Young University, Provo, UT 84602, USA
3
Cubiscan, Inc., Farmington, UT 84025, USA
*
Author to whom correspondence should be addressed.
Electronics 2019, 8(8), 847; https://doi.org/10.3390/electronics8080847
Submission received: 26 May 2019 / Revised: 23 July 2019 / Accepted: 29 July 2019 / Published: 30 July 2019
(This article belongs to the Section Computer Science & Engineering)

Abstract

:
Finding corresponding image features between two images is often the first step for many computer vision algorithms. This paper introduces an improved synthetic basis feature descriptor algorithm that describes and compares image features in an efficient and discrete manner with rotation and scale invariance. It works by performing a number of similarity tests between the feature region surrounding the feature point and a predetermined number of synthetic basis images to generate a feature descriptor that uniquely describes the feature region. Features in two images are matched by comparing their descriptors. By only storing the similarity of the feature region to each synthetic basis image, the overall storage size is greatly reduced. In short, this new binary feature descriptor is designed to provide high feature matching accuracy with computational simplicity, relatively low resource usage, and a hardware friendly design for real-time vision applications. Experimental results show that our algorithm produces higher precision rates and larger number of correct matches than the original version and other mainstream algorithms and is a good alternative for common computer vision applications. Two applications that often have to cope with scaling and rotation variations are included in this work to demonstrate its performance.

1. Introduction

Finding corresponding image features between two images is a key step in many computer vision applications, such as image retrieval, image classification, object detection, visual odometry, object tracking, and image stitching [1]. Since these applications usually require the processing of numerous data points or to run on devices with limited computational resources, feature descriptor is employed to represent specific meaningful structure in the image for fast computation and memory efficiency. In recent years, the increase in the amount of visual inputs drives researchers to investigate new, robust, and efficient feature description and matching algorithms to meet the demand for efficiency and accuracy.
Feature points from two images must be detected first and then described uniquely before they can be matched. Because images are captured at different times and even from different perspectives, a good feature description algorithm must uniquely describe the feature region and should be robust against scaling, rotation, occlusion, blurring, illumination, and perspective variations between images [2].
Feature description algorithms can be roughly categorized into intensity and binary descriptors. The Scale-Invariant Feature Transform (SIFT) [3] and the Speeded-Up Robust Features (SURF) [4] are arguably the two most popular and accurate intensity-based algorithms. Both SIFT and SURF include all three steps of the correspondence problem: feature detection, description, and matching. Although they perform well on intensity images and are robust against image variations, these algorithms require complex computations and large memory storage. These requirements are not desirable for resource-limited embedded applications and applications that require real-time performance.
Several binary feature description algorithms have been developed to use simpler computation to provide descriptor with smaller size. Binary Robust Independent Elementary Features (BRIEF) [5] and the Binary Robust Invariant Scalable Key-points (BRISK) [6] are two representative and popular algorithms. A newer and improved version of BRIEF called ORB or rBRIEF has been developed [7] to cope with rotation invariance. These binary descriptors algorithms are sensitive to image variations and can have fewer accurate matches and a reduced match count compared to SIFT and SURF. A more detailed comparison of these algorithms is included in the next section.
In our previous work, a new binary descriptor algorithm called SYnthetic BAsis (SYBA) descriptor was developed to obtain a higher percentage of correct matches [8]. SYBA performs binary comparisons between the binarized feature region and synthetic basis images to obtain a compact feature descriptor. SYBA’s performance and size are comparable to other binary feature descriptors. However, like other binary feature descriptors, SYBA’s feature point matching accuracy suffers under large amounts of image variations.
In this paper, we introduce an improved version of SYBA called robust-SYBA (rSYBA). rSYBA maintains the same reduced descriptor size and computational complexity as the original SYBA while increasing the number of correct matches and matching precision, especially with the presence of rotation and scaling variation. We created a dataset of 10 images with varying rotation and scaling variations to demonstrate rSYBA’s impressive performance over the original SYBA. We then used the Oxford dataset to compare rSYBA against three representative algorithms, intensity-based (SURF), binary-based (BRISK), and the new ORB algorithm. This paper also includes applications that highlight the robustness of rSYBA, including monocular visual odometry and image stitching.
This paper is organized as follows. Section 2 briefly surveys the related work for feature detection, description, and matching algorithms. Section 3 describes the rSYBA descriptor. The performance of rSYBA is evaluated on BYU rotation and scaling dataset and Oxford Affine dataset in Section 4. Applications of rSYBA for visual odometry and image stitching are provided to show the robustness of rSYBA in Section 5. We conclude this paper in Section 6.

2. Related Work

SIFT [3] and SURF [4] are the two representative and popular feature description algorithms. SIFT achieves scaling invariance and increases tolerance of blurriness by using multiple copies of the feature region at different scales and blurriness. It uses the difference of Laplacian of Gaussians [9] for feature detection. SIFT computes the gradient magnitude and dominant orientation to construct a histogram of gradients to uniquely describe the feature region. The dominant gradient of the feature region is subtracted from the gradient descriptor to make the descriptor rotation invariant.
SURF uses an approach similar to SIFT with a few improvements to speed up the process [10]. It applies a threshold to the determinant of Hessian matrix for feature detection. SURF utilizes Gaussian kernels to generate Gaussian blurred images to reduce the number of generated images compared to SIFT. It uses integral images to simplify and speed up the computation of Gaussian images. Haar transforms are used to assess the primary direction of the feature. Its feature vector is a 64-dimension vector consisting of sums of the x and y gradients and absolute of x and y gradients.
Compared to SIFT, SURF is faster, more resilient to noise, and more easily adapted to parallel processing. It is slightly less accurate and not as invariant to illumination and viewpoint changes as SIFT. These two robust descriptors come at the cost of complex computations which require an increased amount of data storage and compute time. They are thus non-ideal for embedded platforms that have limited resources and certain real-time applications.
Several binary feature description algorithms have been developed aiming at simpler computation and smaller descriptor size. Unlike SIFT and SURF that use intensity gradients as the descriptor, these algorithms simplify the computation and reduce the descriptor size by using pixel-level intensity comparisons to compute the descriptor. Some examples include Binary Robust Independent Elementary Features (BRIEF) [5], Binary Robust Invariant Scalable Keypoints (BRISK) [6], Oriented Fast and Rotated BRIEF (ORB), and Aggregated LOcal HAar (ALOHA) [11].
BRIEF consists of a binary string that contains the results of simple image intensity comparisons at random pre-determined pixel locations. BRISK relies on configurable circular sampling patterns from which it computes brightness comparisons to obtain a binary descriptor. As a newer version of BRIEF, ORB has been developed to use a specific set of 256 learned pixel pairs to reduce correlation among the binary tests [7] instead of random pixel locations. ORB descriptor requires only 32 bytes to represent a feature region. Compared to BRIEF, ORB addresses the issue of image transformations relating to rotation which helps improve its performance. ALOHA compares the intensity of two groups of pixels using 32 designed haar-like pixel patterns in the feature region. These algorithms are with the benefit of smaller storage space and faster execution time, but it comes at the cost of description robustness, feature matching accuracy, and a smaller number of matched features. A thorough survey on local feature descriptors was reported in 2018 [12]. Besides the aforementioned more common and popular feature descriptors, more sophisticated and less known descriptors such as WLD [13], LDAHash [14], and WLBP [15] are discussed.
There are two other feature descriptors that are designed specifically for limited-resource applications, BAsis Sparse-coding Inspired Similarity (BASIS) feature descriptor utilizes sparse coding to provide a generic description of feature characteristics [16]. BASIS is designed to not use float point operations and has a reduced descriptor size. An improved version of BASIS called TreeBASIS is developed to drastically reduce the descriptor size. It creates a vocabulary tree using a small sparse coding basis dictionary to partition a training set of feature region images [17,18]. A limitation with these descriptors is that they do not perform well for long baseline, significant viewing angle and scaling variations.
In recent years, due to the advancements in computing hardware, an entirely different family of algorithms based on deep learning has become a popular approach for image feature extraction, description, and matching. Due to space limitation, only a select few of recent developments are discussed here. A novel deep architecture and a training strategy are developed to learn a local feature pipeline from scratch using collections of images without the need for human supervision [19]. A kernelized deep local-patch descriptor based on efficient match kernels of neural network activations is the latest development using deep-learning architecture for feature description [20]. A robust, unified descriptor network that considers a large context region with high spatial variance is developed for dense pixel matching for applications such as stereo vision and optical flow estimation [21]. Another new end-to-end trainable matching network based on receptive field, RF-Net, is developed to compute sparse correspondence between images [22].
Another improvement on feature matching is developed to address geometrically inconsistent keypoint matches [23]. This novel, more discriminative, descriptor includes not only local feature representation, but also information about the geometric layout of neighboring keypoints. It uses a Siamese architecture that learns a low-dimensional feature embedding of keypoint constellation by maximizing the distances between non-corresponding pairs of matched image patches, while minimizing it for correct matches. Two other convolutional neural networks-based feature matching networks are developed for image retrieval [24] and multimodal image matching [25].
All these deep-learning based methods are new developments in the last two years and perform very well for their specific purposes and applications. They are a deviation from the more traditional approaches that compute the feature descriptor directly from pixel values. They mostly require extensive and complicated training and prediction processes. With appropriate computing hardware to speed up the computation, these methods certainly are good alternative methods for feature description and matching.
SYnthetic BAsis (SYBA) descriptor uses synthetic basis images overlaid onto a feature region to generate binary numbers that uniquely describe the feature region [8]. To efficiently detect the location of the features, SYBA can be used in conjunction with feature detection algorithms such as SIFT, or SURF to improve the process. SYBA’s descriptor of a feature region is simplified, resulting in reduced space needed to describe the feature region of interest (FRI) and time needed for comparison. Despite complexity benefits, matching accuracy of SYBA suffers due to large variations in rotation, and scaling of the feature region in the second image. If the feature is rotated or scaled differently, the pixels contained in the FRI of the subsequent image would be different or located at a different point in the FRI. This results in a significantly different descriptor value between two images which produces poor matching results. Using affine feature points as shown in [26], points likely to deform in subsequent images can be removed, however this comes at the cost of potential matches and reduces the percentage of features matched.
This paper proposes new methods that make SYBA rotation and scale invariant. Rotation invariance is achieved by manipulating the FRI in each image such that the rotation of the FRI is normalized. Scale invariance is achieved by scaling the FRI to different scales and comparing the FRI of the first image to the different scaled versions of the next. Using these methods, SYBA’s matching accuracy and total number of matches is greatly improved.

3. Algorithm

Inspired by the recent development of compressed sensing theory [27], we develop Synthetic Basis Feature (SYBA) descriptor to uniquely describe the FRI [8]. SYBA is designed to be efficient and hardware friendly [8,28]. It is shown that SYBA generates accurate matches under small amounts of image variation between frames. However, these results suffer under large amount of image rotation and scaling variation. We develop a new version of SYBA and call it robust Synthetic Basis Feature Descriptor (rSYBA). rSYBA was first introduced in [29]. It provides a compensation to scaling and rotation of FRI by normalizing the FRI during a pre-process step to improve the robustness of the feature descriptor in terms of scale and rotation invariances.

3.1. SYBA Feature Descriptor

Figure 1 illustrates the flow of SYBA algorithm. Figure 1a shows an example input image. Feature points must be detected before description and matching can be performed. In general, any feature detectors could be used to detect features. In this work, SURF is selected for feature detection because of its performance and popularity, as well as the convenience and fairness for comparisons [8].
There are two parameters that could impact the performance and the size of the SYBA descriptor. One is the FRI size and the other one is the SYBA descriptor size. The 30 × 30 FRI size is selected according to our previous result reported in [16]. Smaller FRI’s could lose important feature information. Larger FRI’s could include the background or non-feature information that affects the performance. For the SYBA size, the bigger the SYBA size, the larger and more SBI’s are needed, which increase the number of operations and descriptor size exponentially. A compromise is to divide the 30 × 30 FRI into 36 5 × 5 subregions and use 36 SYBA 5 × 5 to describe the 30 × 30 FRI.
Once a feature point is detected, a 30 × 30 region surrounding the feature point (highlighted in red in Figure 1a) is extracted and used as the FRI to represent the feature point. Figure 1b shows the detail of the pixels in the FRI. Its grayscale version is shown in Figure 1c. The FRI is binarized using the average intensity of the 30 × 30 FRI as the threshold. The binary FRI is shown in Figure 1d with the pixels brighter than the threshold set to 255 and pixels darker than the threshold set to 0. The binarization provides simple quantization of the FRI while maintaining the spatial and structure information. It also provides a certain degree of illumination invariance.
The SYBA algorithm divides the 30 × 30 FRI into 36 5 × 5 subregions [8]. According to the compressed sensing theory [27], a 5 × 5 subregion can be uniquely described by a series of 5 × 5 binary synthetic basis images (SBIs) [27]. With half of the SBI pixels (25/2 = 13) randomly set to 255, it takes nine of these 5 × 5 SBI’s to describe a 5 × 5 region. As shown in Figure 1e, every 5 × 5 subregion is compared to each 5 × 5 binary synthetic basis images to obtain a similarity measure by counting how many pixels with a value ‘255’ in a 5 × 5 subregion of the BFRI also have a value ‘255’ at the corresponding pixel in the SBI.
Figure 1 illustrates how the similarity is measured. Between the 5 × 5 subregion of the binary FRI shown on the top and the first SBI (on the left), eight pairs of corresponding pixels are both 255. Comparing the 5 × 5 subregion to the second SBI from the left, five pairs of pixels are both 255. Using this similarity measure, the 5 × 5 subregion is described by a sequence of nine numbers (8, 5, 8, 6, 9, 6, 8, 5, 7) between 0 and 13 (due to maximum 13 pixels are 255 in every SBI). With 36 5 × 5 subregions and nine numbers to describe each of them, the feature descriptor for each FRI requires 36 × 9 × 4 = 1296 bits, with four bits being needed to store a number between 0 and 13.
As mentioned previously, our aim is to develop a hardware friendly algorithm for Field Programmable Gate Arrays (FPGAs) implementation. Many embedded vision applications require the vision sensor to be low power consumption and compact in size. FPGA is an excellent option for these applications. Different computing platforms have varying computational power, which makes it difficult to compare the processing speed sand resource usage objectively. We use the number of operations to compare the processing speed and the descriptor size to compare the resource usage instead [8]. We reported the comparisons between SYBA and other well-known algorithms such as SIFT, SURF, BRIEF, and rBRIEF to prove the suitability of SYBA for hardware implementation and for real-time embedded applications.
Using the SYBA descriptor, two feature points can be matched by calculating the distance between the two descriptors. We use the L1 norm rather than other common comparison metrics such as Euclidean or Mahalanobis distance, which require complex operations such as multiplication and square root, to minimize the computational complexity. The equation for the L1 norm to compute the distance is as follows:
d = i = 1 n | x i y i | ,
where xi and yi represent the similarity measure (the unsigned value) for all n comparisons where n is the total number of SBIs times the number of subregions. A distance close to zero indicates a perfect match and a large distance represents a poor match.

3.2. Robust SYBA Feature Descriptor

Although SYBA descriptor is smaller and more efficient than other methods while maintains high matching accuracy, its performance suffers when large rotation and scaling variations exist between two images. For example, if the image is rotated because of camera movement, the FRI could also rotate slightly. Although the FRI rotation is not as obvious as the whole image, the feature descriptor could still change, resulting in high L1 norms. To cope with this challenge for certain applications, the descriptor calculation must account for rotation and scaling variations. rSYBA is developed to perform a pre-process step such that the region used as FRI is scaled and rotated to generate a few extra FRI’s for description and matching [29].

3.2.1. Scale Invariance

To achieve scale invariance, rSYBA re-scales the FRI to different scales while maintaining the same dimensions and location within the image. This results in multiple FRIs and hence multiple feature descriptors corresponding to one feature point. Feature matching is achieved by matching either the feature from the first image to the best scaled feature in the second image or vice versa. Figure 2 illustrates how scaling invariance is achieved. The original FRI from the first image on the left is highlighted in red. This FRI is scaled to 0.9, 1.0, and 1.1. Feature descriptors for these three scaled FRIs are matched against the feature in the second image. In this example, the best match is determined to be the one scaled to 1.1.
The number of scales is dependent on the application and camera frame rate or camera movement. Most modern cameras operate at 60–120 frames per second, the scale difference that may occur between two consecutive frames can be small if the camera does not move at high speed. The scale factors from 8 to 1.2 with 1 scaling intervals should be adequate for most applications. These scale factors generate 5 FRIs for one detected FRI. Only three of them are shown in Figure 2.

3.2.2. Rotation Invariance

SIFT and SURF both calculate the dominant gradient orientation of the feature region and normalize the descriptor value by subtracting that dominant orientation from the descriptor to make the description rotation invariant. Instead of normalizing the resulting descriptor, rSYBA normalizes the FRI directly by rotating the FRI by the dominant gradient orientation. The gradient value and orientation at each pixel location are computed using Equations (2) and (3).
m ( x , y ) = ( I ( x + 1 , y ) I ( x 1 , y ) ) 2 + ( I ( x , y + 1 ) I ( x , y 1 ) ) 2
θ ( x , y ) = t a n 1 I ( x , y + 1 ) I ( x , y 1 ) I ( x + 1 , y ) I ( x 1 , y )
where m represents the gradient magnitude and θ represents the gradient orientation. I represents the grayscale pixel value at the specified x and y locations within an image. For hardware implementation, instead of using the costly multiplication, square root, and tangent operations, a Gaussian kernel can be applied to the image to find the gradient magnitude and orientation.
Using these gradient orientations and magnitudes, a histogram is generated with each bin corresponding to a range of gradient orientations. The range for the bins is dependent on the application. As mentioned previously, with high camera frame rate, rotation from frame to frame is small and it is even smaller for the FRI. Figure 3 shows an example histogram with a range of 10 degrees.
The gradient and orientation are computed for each pixel value contained in the FRI. The corresponding gradient orientation bin in the histogram is incremented by an amount proportional to the gradient magnitude. The resulting histogram represents the total gradient magnitude for each gradient orientation bin. The gradient orientation of the bin that has the highest gradient magnitude is selected as the dominant gradient orientation. A sample of this histogram is shown in Figure 3. The total gradient magnitude is normalized to 100% for display.
Using this orientation, the FRI is back-rotated by the dominant gradient orientation. Equations for rotation transformations of an image are shown as Equations (4) and (5).
x 2 = cos θ ( x 1 x 0 ) sin θ ( y 1 y 0 ) + x 0
y 2 = sin θ ( x 1 x 0 ) + cos θ ( y 1 y 0 ) + y 0
where x2 and y2 correspond to the re-mapped coordinates of the pixel and θ corresponds to the rotation angle. The center coordinates of the rotation region are x0 and y0, while x1 and y1 correspond to the pixel being mapped. For hardware implementation, the multiplication of a cosine or sine of an image location can be performed with a look-up table. The size of the image is bounded (most images are less than 2000 pixels in one dimension) and the angle degrees for the dominant orientation are fixed at an internal of 10 degrees, thus a maximum of 36 possible angle values can be found. For an 8-bit memory cell, the sine and cosine look-up tables can be represented with, at most, 36 × 2000 = 72 KB of memory. Surrounding pixels are included around the FRI such that when the region is rotated no information is lost. The region is also cropped such that the rotated image fits within the FRI dimensions.
Rotation invariance is achieved through this method as the matching FRIs are rotated to approximately their normalized orientation. Additional rotated FRIs are generated if there is an orientation found that is within the 80% range of the max magnitude using the histogram. This percentage threshold can be adjusted based on the application to reduce the number of generated rotated FRIs. If the application has a large amount of rotation between frames, a lower percentage is recommended. This is done to account for any sort of noise or distortions that would shift the dominant gradient values but at the price of more rotated FRIs for description and matching.
Figure 4 illustrates the rotation invariance operation. Once a feature is detected and its FRI is defined (small blue square), the FRI is expanded (dotted blue square) for rotation. As shown in the gradient orientation histogram in Figure 3, there are two dominant orientations. One has the maximum accumulated gradient magnitude at 20 degrees. The second one has the accumulated gradient magnitude larger than the 80% threshold at 300 degrees. The extended FRI is rotated for 20 and 300 degrees to generate two rotated FRIs for description and matching.
Unlike scaling invariance that only FRIs from one image must be scaled to generate multiple scaled FRIs for matching, rotation invariance requires feature regions from both images to go through the same process to normalize orientation. Normally, only one rotated FRI is needed per feature point unless more than one dominant gradient orientation exists as shown in Figure 3.

4. Experiments

Feature detection is the first step of feature matching. As the start of the algorithm, feature detection is exerted on the input image frame to find feature points. In general, any feature detection algorithms could be employed. In this work, SURF is selected to detect feature points for its performance and popularity, as well as the convenience and fairness for comparison [8].
Two datasets were used to compare the algorithm performance to prove that rSYBA results in improvement under large amounts of rotation and scaling image variation. The first dataset is the BYU Scaling and Rotation dataset. This dataset consists of images that are scaled to 0.8, 0.9, 1.1, and 1.2 and images that are rotated by 5, 7, 10, and 15 degrees. The scaling factors and rotation angles are known in this dataset. We use this dataset to demonstrate that rSYBA has superior scaling and rotation invariance than the original SYBA. The second dataset is the Oxford Affine dataset [26]. The Oxford Affine dataset consists of image sequences that were designed to test the robustness of feature descriptor algorithms with image perturbations such as blurring, lighting variation, viewpoint change, zoom and rotation, and image compression. Since this work focuses primarily on rotation and scaling, the “Boat” sequence of zoomed and rotated images was used for comparing rSYBA with the other algorithms.

4.1. Comparison Metrics

To quantify the merit of one algorithm versus another, common metrics such as precision and recall are used. Precision and recall are computed as Equations (6) and (7).
p r e c i s i o n = #   Correct   Feature   Matches # Matches   Found
p r e c i s i o n = #   Correct   Feature   Matches # Matches   Found
Using these metrics, we can plot a precision vs. recall curve to get an approximation of how accurate the feature matches are as well as the efficiency of the algorithm in producing correct feature matches. Because the total number of possible matches (the denominator of recall in Equation (7)) is unknown or subjective but remains constant for each image, it is equivalent to use the total number of correct matches as recall for our comparisons. We also compute the accuracy as the percentage of the matches found that there are correct matches. It is similar to calculating the precision when the maximum number of correct matches is found.
To determine the correctness of the final matched feature pairs between two images, the homography matrix was used [8]. We used the matched pairs to find the homography matrix, which transforms the image points in one image to their corresponding locations in the second image. Equation (8) shows this,
p 2 = H p 1
where H is the homography matrix, p1 is the point in the first image, and p2 is the point in the second image. Outliers and incorrect matches are filtered out in the computation of the homography matrix using the RANSAC algorithm [30]. This homography calculation is not necessary for benchmark datasets that often provide a ground truth homography. To determine if a match is correct, the matched feature point must be within a certain range of the mapped feature point. For these experiments, the error bound was set to five pixels.

4.2. BYU Scaling and Rotation Dataset

This experiment focuses on demonstrating the improvements we made for rSYBA provide better scaling and rotation invariance than the original SYBA. We created a small dataset called BYU Rotation and Scaling Dataset for this experiment. It starts with one aerial image. This original image is then scaled to 0.8, 0.9, 1.1, and 1.2. It is then rotated by 5, 7, 10, and 15 degrees. The size of the original image is maintained the same for the rotation set. All these images in the dataset are shown in Figure 5.
In our experiments, features detected at the edge of the image were filtered as they are the most likely to be incorrect matches due to kernel filtering. Features were then matched using SYBA and rSYBA. Feature matches were ranked based on the L1 norm distance as well as the distance to the next best match. The smaller the L1 norm distance and the larger the distance to the second-best match resulted in a larger confidence of being a good match.
We matched features detected from the original image to the features in the scaled and rotated images to compute the matching accuracy as explained in Section 4.1. We also computed precision vs. recall in terms of the number of correct matches for comparison. Visual results for scaling sequence are shown in Figure 6a SYBA and Figure 6b rSYBA, where the yellow lines connect the correct matches.
The results for the rotation sequence also demonstrated a significant improvement from SYBA to rSYBA. Visual results are shown in Figure 7a SYBA and Figure 7b rSYBA. Table 1 and Table 2 show all the computed metrics for SYBA and rSYBA for each image comparison in each sequence. We compute the accuracy as the percentage of the matches found that are correct matches when the maximum number of correct matches is found. As explained in Section 4.1, the feature count is the denominator and can be cancelled out when plotting the precision vs. recall curve. We set the feature count to 300 to calculate the recall because the maximum features found are all below 300.
We included a scale of 1.05 to test the accuracy when there is a very small variation. As shown in the tables, rSYBA provides a significant increase in number of matches and number of correct matches compared to SYBA. On average across the test cases for the scaling dataset, rSYBA improved recall percentage by 53.578% and accuracy by 32.132%. On average across the test cases for the rotation dataset, rSYBA improved recall percentage by 44.55% and accuracy by 39.85%.
Overall precision of rSYBA and SYBA was also compared. We performed matching precision comparison by adjusting the matching parameters to generate different numbers of correct matches and computing their corresponding precision. As explained in Section 4.1, we use the number of correct matches to represent the recall percentage. For this comparison, these precision metrics were calculated for each algorithm applied to each image with differing amounts of image variation. Results of this investigation, as well as a visual comparison of the final total number of correct matches, for each sequence are shown in Figure 8a for scaling and Figure 8b for rotation variations.
Data analysis results support that rSYBA will consistently outperform SYBA even if the algorithms are forced to match all possible features (irrespective of matching thresholds). The dips at the beginning of the graph are due to an incorrect match detected early in the data acquisition when the total number match count is low. Despite these dips, the trends will smooth and integrate out over time as the match count increases. These graphs show the trend until the matching algorithm can no longer produce any more matches, which is represented by the sudden drop of precision to 0.

4.3. Oxford Affine Dataset

Extensive comparisons between SYBA and other mainstream methods have been performed and reported in [8] to show SYBA’s superior performance. In this work, we focus only on the improvement of rSYBA over SYBA. We include comparisons between rSYBA and representative intensity (SURF), binary (BRISK), and the new ORB descriptors. SURF is the most widely used feature detection algorithm and contains aspects which account for rotation and scaling variance between images. BRISK is a commonly used compressed feature description algorithm. ORB is the improved version of BRIEF that is designed to provide robust rotation invariance.
Oxford Affine Features dataset was used for this experiment [26]. It contains sets of 6 images, with increasing variation in each consecutive image. For example, Image 1 in each set of images represents the original image. Images 2–6 are images with increasing image deformation. We used the “boat” dataset in the Oxford dataset which contains images with zoom and rotation variance. We used the same methods discussed in Section 4.1 for comparison. rSYBA’s overall performance was compared with SURF, BRISK, and ORB using Image 1 versus Image 2 and Image 1 versus Image 3 of the dataset in Matlab. We did not compare with more images contained in the dataset because no algorithm produced enough matches to give sufficient data for a meaningful comparison.
Figure 9 shows the matching results between Images 1 and 2 in the Oxford boat sequence with rSYBA, SURF, BRISK, and ORB respectively. Table 3 shows the metrics for the output of each of these algorithms. Precision vs. recall curve is shown in Figure 10.
Overall, although with higher accuracy between 1 and 2, BRISK produced very few matches and very few correct matches for real-world applications. For image pair 1 and 2, ORB produced 3 more matches than rSYBA (200 vs. 197) but only 119 of its 200 matches were considered correct matches (within five pixels of the mapped features from homography) as opposed to rSYBA’s 190 of 197. In comparison, rSYBA produced a significant higher number of correct matches and maintained a high accuracy as compared to SURF, BRISK, and ORB. This demonstrates that rSYBA can improve results as compared with mainstream algorithms in applications that contain a large amount of image variation.
We calculated the recall using Equation (7). As explained in Section 4.1, the number of possible matches is unknown or subjective, we picked the number of possible matches to be large enough to include all correct matches. In this case, the number of possible of matches was set to 500. Recalls shown in Table 3 are the correct matches divided by 500. We plot the precision vs. recall curve in Figure 10. Instead of using Equation (7) to calculate recalls for this plot, we plot the curve using the number of correct matches (the numerator of Equation (7)) because the denominator (500) can be cancelled.

5. Applications of rSYBA

This paper exerts rSYBA in two applications that utilize high amounts of image variation to demonstrate its improvements over the original SYBA. The first shows camera pose plotting for a ground-based vehicle using monocular visual odometry. The second consists of generating panoramic images through image stitching and image transforms. Both applications contain large amounts of image variation between image frames and therefore requires a significant amount of correct feature matches to generate acceptable results. As shown in Table 3, although ORB produces more matched features and correct matches, SURF has the best accuracy among the three representative algorithms we compared. In this section, we only include results from SURF for comparison.

5.1. Visual Odometry

In this subsection, we describe an application of a Monocular Visual Odometry (VO) to detect the 3D camera positioning with a ground vehicle. We used the rSYBA feature descriptor algorithm to obtain accurate feature matches to be used in the VO application. Additionally, we compared our 3D camera positioning results using rSYBA with results taken using SURF. Results were taken using the industry standard VO dataset called KITTI [31].
To start the VO algorithm, feature points are extracted from the current image frame (Ik) and the previous image frame (Ik−1). Feature matching is then performed using the rSYBA descriptor algorithm between frame Ik−1 and Ik. The essential matrix between these two frames is computed using feature correspondences and then decomposed into rotation (Rk) and translation matrices (tk) which can be used to extract 3D positioning information [32]. Feature point positioning is then updated using the techniques discussed in [28] to reduce drift and error between frames. Camera motion between time k−1 and k is rearranged in the form of the rigid body transformation P k R 4 × 4 :
P k   =   [ R k t k 0 1 ]
where R k R 3 × 3 the rotation matrix, and t k R 3 × 3 the translation vector. The set P contains the camera motion in all subsequent frames. Using the rotation and translation vectors, we have the 3D transformation matrices necessary to transform the camera pose in the previous frame to find the camera pose in the current frame. The current camera pose can be computed by concatenating all the transforms for each frame up to and including the transform for the current frame.
The proposed method was evaluated by using publicly available real-world datasets from the KITTI benchmark suite [31]. The KITTI dataset contains images for stereo VO, but for this application we used a single camera video sequence or monocular VO.
For performance evaluation of this application, the relative error in distance and the root mean square error (RMSE) were found and used as comparison metrics between rSYBA and SURF. The relative error in distance is calculated as shown in Equation (10).
r e l a t i v e   e r r o r = A B S ( g r o u n d   t r u t h   l e n g t h v i s u a l   o d o m e t r y   p a t h   l e n g t h ) v i s u a l   o d o m e t r y   p a t h   l e n g t h
This measures the difference between the calculated length of VO path and the actual distance traveled. RMSE is calculated based on each position transformation matrix (Pk). The RMSE matrix indicates the sample standard deviation of the transformation difference between the ground truth and the visual odometry result. RMSE provides a very good measurement of the average error of the entire image sequence to determine the algorithm’s frame-to-frame performance.
The RED alone is not able to evaluate the performance very well because it only evaluates the accuracy of the distance traveled. The relative error could end up very small (measured distance is close to the actual distance travel) but along a completely different path. The RMSE measures the individual frame-to-frame accuracy and provides a better evaluation of overall performance. The RMSE computed and shown in the experimental results is the average across all the images in the sequence. For comparing feature matching accuracy, the same VO algorithm and feature detection methods were used to produce as accurate a comparison as possible between rSYBA and SURF.
In the experiment, country, urban, and country and urban mixed sequences were used for comparisons. All these sequences were recorded at different times of the day and a variety of locations which include different lighting conditions, shadow presence, numbers of cars, pedestrians, cyclists, etc. as well as paved winding roads with high slopes. Results for each case for the camera positioning plotting and the number of correct matched feature pairs are shown in Figure 11 For the camera position plotting, the X and Z dimensions of the plots are shown as these are the most significant when plotting for an autonomous vehicle (height of the ground is not really incorporated in ground vehicle navigation). The Y dimension is still included in error computations to help assess the accuracy of the feature matching algorithms with VO. It is shown that rSYBA produced more inlier matches than SURF on most of the frames in the sequence.
The overall results for the RMSE between each frame the relative error in distance for each case can be seen in Table 4. It is apparent from these results that rSYBA outperformed SURF in each sequence. For example, in the case of urban sequence, rSYBA reduced RMSE error compared to SURF in the X, Y, and Z dimension by 0.6602, 6.8302, and 15.5501 m respectively.
Figure 11 and Table 4 show rSYBA produces a more substantial number of accurate feature matches than SURF in every test case. This assists in generating a more accurate essential matrix which correspondingly shows a smaller error. Compared to SURF, rSYBA is also more suited to be implemented in hardware for embedded applications.

5.2. Image Stitching

For image stitching to be successful, correlation must be found between the images taken which can then be used to transform each image and overlap them to form the panoramic image. In this subsection, we present results with applying the feature-based image stitching approach with rSYBA and forego any blending technique as we are focused on the image transform results. Results were taken using the Adobe Panorama dataset, which contains 10 image sets with image transform ground truths [33]. Again, results were only compared against SURF because its high accuracy and a reasonable number of correct matches.
To start image stitching, the homographic image transform is found between each adjacent image in the panorama. The homography transform matrix is computed by using the correctly matched features between the overlapping regions in the images. After the homographies are found between each subsequent image, a new homography is computed for each image. The algorithm iterates through each homography matrix and computes the new homography transform. To normalize the panorama and center the view on the middle image in the set, the homographies are multiplied by the inversion of the center images’ computed homography. Then, the extreme transformed points are found contained within the homography transforms to find the bounds of the panoramic view. After the bounds for the new image are found, a blank image or canvas is created and masking is then used to insert all the transformed images into the panorama.
For this research, the Adobe image dataset was used for experimentation [33]. Eight images were used for each view sequence, resulting in seven homographies computed. Included in the dataset are the ground truths for the homography matrices. For the comparison metrics, the average relative error was computed for each of the values within the 3 × 3 homography matrix across all the images in the panorama. The relative error is computed as follows:
r e l a t i v e   e r r o r = A B S ( g r o u n d   t r u t h   v a l u e c o m p u t e d   h o m o g r a p h y   v a l u e ) g r o u n d   t r u t h   v a l u e
Results for each of the panoramic views were taken using rSYBA and SURF. Feature locations were detected using the SURF feature detection algorithm and were kept constant with all algorithms to allow for accurate comparisons.
Figure 12 shows image sequences used for testing. The images include moving subjects, which may introduce some artifacts in the panorama as the subjects that move may not align properly. The final results of the image stitching application can be seen in Figure 13. Individual images were transformed using the resulting homographies and the camera intrinsic parameters. The results for the relative error across stitching all the frames for all the algorithms can be seen in Table 5. Results were computed using the ground truth homographies provided with the dataset. From these results, it is shown that rSYBA, on average, produced more accurate homographies than SURF. This resulted in a more accurate panoramic view.

6. Conclusions

This paper proposed a novel idea for the improvement of a compressed sensing feature description algorithm. rSYBA provides robustness to SYBA with a pre-processing step to compensate the transforms of scaling and rotation of FRI. rSYBA maintains the reduced storage space and complexity as the original SYBA while increasing the number of matched feature points and maintaining feature point matching precision. Experiments were performed using common comparison methods with precision and recall computations. Results show that rSYBA produces higher precision rates and number of correct matches compared to SYBA as evidenced by the BYU Rotation and Scaling dataset. rSYBA also competes favorably with mainstream algorithms as shown by the Oxford dataset. By being applied to some widely used computer vision applications, including object detection, visual odometry, and image stitching, rSYBA also shows superior performance against mainstream algorithms.

Author Contributions

Conceptualization, D.Z. and D.-J.L.; methodology, D.Z. and D.-J.L.; software, L.A.R. and A.D.; validation, D.Z., D.-J.L. and A.D.; formal analysis, L.A.R. and M.Y.; investigation, D.Z., D.-J.L. and L.A.R.; resources, D.Z. and D.-J.L.; data curation, L.A.R. and M.Y.; writing—original draft preparation, D.Z. and L.A.R.; writing—review and editing, D.-J.L. visualization, L.A.R.; supervision, D.-J.L.; project administration, D.-J.L.; funding acquisition, D.Z. and D.-J.L.

Funding

This research was funded by the University Technology Acceleration Program (UTAG) of Utah Science Technology and Research (USTAR) [#172085] of the State of Utah, U.S. and the Science and Technology Planning Project of Guangdong Province of China (No. 2019B070702004).

Conflicts of Interest

The authors declare no conflict of interest. The funders had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript, or in the decision to publish the results.

References

  1. Mukherjee, D.; Wu, Q.M.J.; Wang, G. A comparative experimental study of image feature detectors and descriptors. Mach. Vision Appl. 2015, 26, 443–466. [Google Scholar] [CrossRef]
  2. Giveki, D.; Soltanshahi, M.A.; Montzaer, G.A. A new image feature descriptor for content based image retrieval using scale invariant feature transform and local derivative patter. Optik 2017, 131, 242–254. [Google Scholar] [CrossRef]
  3. Lowe, D.G. Distinctive image features from scale-invariant keypoints. Int. J. Comput. Vis. 2004, 60, 91–110. [Google Scholar] [CrossRef]
  4. Bay, H.; Tuytelaars, T.; Van Gool, L. SURF: Speeded Up Robust Features. In Proceedings of the European Conference on Computer Vision—ECCV 2006, Graz, Austria, 7–13 May 2006; pp. 404–417. [Google Scholar]
  5. Calonder, M.; Lepetit, V.; Strecha, C.; Fua, P. BRIEF: Binary robust independent elementary features. In Proceedings of the 11th European Conference on Computer Vision ECCV, Heraklion, Greece, 5–11 September 2010; pp. 778–792. [Google Scholar]
  6. Leutenegger, S.; Chli, M.; Siegwart, R. BRISK: Binary robust invariant scalable keypoints. In Proceedings of the 2011 International Conference on Computer Vision, Barcelona, Spain, 6–13 November 2011; pp. 2548–2555. [Google Scholar]
  7. Rublee, E.; Rabaud, V.; Konolige, K.; Bradski, G. ORB: An efficient alternative to SIFT or SURF. In Proceedings of the 2011 International Conference on Computer Vision, Barcelona, Spain, 6–13 November 2011; pp. 2564–2571. [Google Scholar]
  8. Desai, A.; Lee, D.J.; Ventura, D. An efficient feature descriptor based on synthetic basis functions and uniqueness matching strategy. Comput. Vis. Image Underst. 2016, 142, 37–49. [Google Scholar] [CrossRef]
  9. Harris, C.; Stephens, M. A Combined Corner and Edge Detector. In Proceedings of the Alvey Vision Conference, Manchester, UK, 31 August–2 September 1988; pp. 147–151. [Google Scholar]
  10. Liu, W.; Wang, Y.T.; Chen, J.; Guo, J.W.; Lu, Y. A completely affine invariant image-matching method based on perspective projection. Mach. Vision Appl. 2012, 23, 231–242. [Google Scholar] [CrossRef]
  11. Saha, S.; Demoulin, V. ALOHA: An efficient binary descriptor based on haar features. In Proceedings of the 19th IEEE International Conference on Image Processing (ICIP), Orlando, FL, USA, 30 September–3 October 2012; pp. 2345–2348. [Google Scholar]
  12. Leng, C.; Zhang, H.; Li, B.; Cai, G.; Pei, Z.; He, L. Local feature descriptor for image matching: A survey. IEEE Access 2018, 7, 6424–6434. [Google Scholar] [CrossRef]
  13. Chen, J.; Shan, S.; He, C.; Zhao, G.; Pietikainen, M.; Chen, X.; Gao, W. WLD: A robust local image descriptor. IEEE Trans. Pattern Anal. Mach. Intell. 2010, 32, 1705–1720. [Google Scholar] [CrossRef] [PubMed]
  14. Strecha, C.; Bronstein, A.M.; Bronstein, M.M.; Fua, P. LDAHash: Improved matching with smaller descriptors. IEEE Trans. Pattern Anal. Mach. Intell. 2012, 34, 66–78. [Google Scholar] [CrossRef] [PubMed]
  15. Liu, F.; Tang, Z.; Tang, J. WLBP: Weber local binary pattern for local image description. Neurocomputing 2013, 120, 325–335. [Google Scholar] [CrossRef]
  16. Fowers, S.G.; Lee, D.J.; Ventura, D.; Archibald, J.K. The nature-inspired basis feature descriptor for UAV imagery and its hardware implementation. IEEE Trans. Circuits Syst. Video Technol. 2013, 23, 756–768. [Google Scholar] [CrossRef]
  17. Fowers, S.G.; Desai, A.; Lee, D.J.; Ventura, D.; Wilde, D.K. An efficient tree-based feature descriptor and matching algorithm. AIAA J. Aerosp. Inf. Syst. 2014, 11, 596–606. [Google Scholar] [CrossRef]
  18. Fowers, S.G.; Desai, A.; Lee, D.J.; Ventura, D.; Archibald, J. Tree-BASIS feature descriptor and its hardware implementation. Int. J. Reconfigurable Comput. 2014, 2014, 12. [Google Scholar] [CrossRef]
  19. Ono, Y.; Trulls, E.; Fua, P.; Yi, K.M. LF-Net: learning local features from images. In Proceedings of the 32nd Conference on Neural Information Processing Systems (NeurIPS), Montréal, QC, Canada, 2–8 December 2018; pp. 1–11. [Google Scholar]
  20. Mukundan, A.; Tolias, G.; Chum, O. Explicit spatial encoding for deep local descriptors. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Long Beach, CA, USA, 16–20 June 2019; pp. 9394–9403. [Google Scholar]
  21. Schuster, R.; Wasenmüller, O.; Unger, C.; Stricker, D. SDC—Stacked dilated convolution: A unified descriptor network for dense matching tasks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Long Beach, CA, USA, 16–20 June 2019; pp. 2556–2565. [Google Scholar]
  22. Shen, X.; Wang, C.; Li, X.; Yu, Z.; Li, J.; Wen, C.; Cheng, M.; He, Z. RF-Net: An end-to-end image matching network based on receptive field. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Long Beach, CA, USA, 16–20 June 2019; pp. 8132–8140. [Google Scholar]
  23. Trzcinski, T.; Komorowski, J.; Dabala, L.; Czarnota, K.; Kurzejamski, G.; Lynen, S. SConE: Siamese constellation embedding descriptor for image matching. In Proceedings of the Computer Vision—ECCV 2018 Workshops, Munich, Germany, 8–14 September 2018; pp. 401–413. [Google Scholar]
  24. Yang, J.; Liang, J.; Shen, H.; Wang, K.; Rosin, P.L.; Yang, M. Dynamic match kernel with deep convolutional features for image retrieval. IEEE Trans. Image Process. 2018, 27, 5288–5301. [Google Scholar] [CrossRef] [PubMed]
  25. Baruch, E.B.; Keller, Y. Multimodal matching using a hybrid convolutional neural network. arXiv 2018, arXiv:1810.12941v1. Available online: https://arxiv.org/abs/1810.12941 (accessed on 29 July 2019).
  26. Affine Covariant Features. Available online: http://www.robots.ox.ac.uk/~vgg/research/affine/ (accessed on 16 July 2019).
  27. Anderson, H. Both Lazy and Efficient: Compressed Sensing and Applications; Report number:2013-7521P; Sandia National Laboratories: Albuquerque, NM, USA, 2013. [Google Scholar]
  28. Desai, A.; Lee, D.J. Visual odometry drift reduction using SYBA descriptor and feature transformation. IEEE Trans. Intell. Transp. Syst. 2016, 17, 1839–1851. [Google Scholar] [CrossRef]
  29. Raven, L.A.; Lee, D.J.; Desai, A. Robust synthetic basis feature descriptor. In Proceedings of the IEEE International Conference on Image Processing (ICIP), Beijing, China, 17–20 September 2017; pp. 1542–1546. [Google Scholar]
  30. Fischler, M.A.; Bolles, R.C. Random sample consensus: A paradigm for model fitting with applications to image analysis and automated cartography. Readings in Computer Vision; Fischler, M., Firschein, O., Eds.; Elsevier: Amsterdam, The Netherlands, 1987; pp. 726–740. [Google Scholar]
  31. Geiger, A.; Lenz, P.; Urtasun, R. Are we ready for autonomous driving? the KITTI vision benchmark suite. In Proceedings of the 2012 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Providence, RI, USA, 16–21 June 2012; pp. 3354–3361. [Google Scholar]
  32. Longuet-Higgins, H.C. A Computer Algorithm for Reconstructing a Scene from Two Projections. In Readings in Computer Vision; Fischler, M., Firschein, O., Eds.; Elsevier: Amsterdam, The Netherlands, 1987; pp. 61–62. [Google Scholar]
  33. Adobe Panoramas Dataset. Available online: https://sourceforge.net/adobe/adobedatasets/panoramas/home/Home/Author (accessed on 9 July 2019).
Figure 1. Algorithm flow. (a) The input image, (b) a 30 × 30 region surrounding the feature point, (c) grayscale image of the feature region of interest (FRI), (d) binary FRI, and (e) similarity measure.
Figure 1. Algorithm flow. (a) The input image, (b) a 30 × 30 region surrounding the feature point, (c) grayscale image of the feature region of interest (FRI), (d) binary FRI, and (e) similarity measure.
Electronics 08 00847 g001
Figure 2. Illustration of how generating scaled FRIs achieves scale invariance. FRI in the first image (left) is scaled to 0.9, 1.0, and 1.1. The one scaled to 1.1 is determined to be the best match to the FRI in the second image.
Figure 2. Illustration of how generating scaled FRIs achieves scale invariance. FRI in the first image (left) is scaled to 0.9, 1.0, and 1.1. The one scaled to 1.1 is determined to be the best match to the FRI in the second image.
Electronics 08 00847 g002
Figure 3. Example of a gradient orientation histogram for an FRI. The horizontal axis represents the gradient orientation in a 10-degree interval and the vertical axis shows the accumulated gradient magnitude.
Figure 3. Example of a gradient orientation histogram for an FRI. The horizontal axis represents the gradient orientation in a 10-degree interval and the vertical axis shows the accumulated gradient magnitude.
Electronics 08 00847 g003
Figure 4. Rotation invariance operation.
Figure 4. Rotation invariance operation.
Electronics 08 00847 g004
Figure 5. Five images from the scaling dataset and five from the rotation dataset.
Figure 5. Five images from the scaling dataset and five from the rotation dataset.
Electronics 08 00847 g005
Figure 6. Matching result between the original image and the 0.8 and 1.2 scaled images using (a) SYnthetic BAsis (SYBA) and (b) robust SYBA (rSYBA).
Figure 6. Matching result between the original image and the 0.8 and 1.2 scaled images using (a) SYnthetic BAsis (SYBA) and (b) robust SYBA (rSYBA).
Electronics 08 00847 g006
Figure 7. Matching result between the original image and the 5° and 10° rotated images using (a) SYBA and (b) rSYBA.
Figure 7. Matching result between the original image and the 5° and 10° rotated images using (a) SYBA and (b) rSYBA.
Electronics 08 00847 g007
Figure 8. Precision comparison of SYBA and rSYBA for the (a) scaling and (b) rotation variations.
Figure 8. Precision comparison of SYBA and rSYBA for the (a) scaling and (b) rotation variations.
Electronics 08 00847 g008
Figure 9. Matching results between image 1 and image 2 in the Oxford boat sequence (a) rSYBA; (b) Speeded-Up Robust Features (SURF); (c) Binary Robust Invariant Scalable Key-points (BRISK); (d) Oriented Fast and Rotated BRIEF (ORB).
Figure 9. Matching results between image 1 and image 2 in the Oxford boat sequence (a) rSYBA; (b) Speeded-Up Robust Features (SURF); (c) Binary Robust Invariant Scalable Key-points (BRISK); (d) Oriented Fast and Rotated BRIEF (ORB).
Electronics 08 00847 g009
Figure 10. Precision comparison of rSYBA, SURF, BRISK, and ORB for the Boat image sequence.
Figure 10. Precision comparison of rSYBA, SURF, BRISK, and ORB for the Boat image sequence.
Electronics 08 00847 g010
Figure 11. Camera pose and number of correct matches for the scene of (a) urban and country environments (Run #2), (b) urban environment (Run #5), and (c) country environment (Run #4).
Figure 11. Camera pose and number of correct matches for the scene of (a) urban and country environments (Run #2), (b) urban environment (Run #5), and (c) country environment (Run #4).
Electronics 08 00847 g011
Figure 12. Sample images used in the Carmel Image Sequence.
Figure 12. Sample images used in the Carmel Image Sequence.
Electronics 08 00847 g012
Figure 13. Image stitching results for (a) rSYBA and (b) SURF on Carmel image sequence.
Figure 13. Image stitching results for (a) rSYBA and (b) SURF on Carmel image sequence.
Electronics 08 00847 g013
Table 1. Accuracy comparison for Scale Image Sequence.
Table 1. Accuracy comparison for Scale Image Sequence.
Scale FactorFeature Count# of Matches Found# of Correct MatchesAccuracy (%)Recall (%)
SYBArSYBASYBArSYBASYBArSYBASYBArSYBA
0.830030185816626.6689.722.6755.33
0.9300672224421165.6795.0414.6770.33
1.0530011124910123790.9995.1833.6779.00
1.1300812346122175.3094.4420.3373.67
1.2300442172120147.7292.627.0067.00
Table 2. Accuracy comparison for Rotation Image Sequence.
Table 2. Accuracy comparison for Rotation Image Sequence.
DegreesFeature Count# of Matches Found# of Correct MatchesAccuracy (%)Recall (%)
SYBArSYBASYBArSYBASYBArSYBASYBArSYBA
5300742035919079.7293.5919.6763.33
730035160913925.7186.883.0046.33
10300331751816254.5492.576.0054.00
153002015091374591.333.0245.67
Table 3. Metrics Boat Image Sequence between Images 1 and 2 and Images 1 and 3.
Table 3. Metrics Boat Image Sequence between Images 1 and 2 and Images 1 and 3.
Image PairFeature Count# of Matches Found# of Correct MatchesAccuracy (%)Recall (%)
rSYBASURFBRISKORBrSYBASURFBRISKORBrSYBASURFBRISKORBrSYBASURFBRISKORB
1 & 25001977030200190623011996.4488.57100.0059.5038.0012.406.0023.80
1 & 3500171130170139204181.2815.380.0024.1227.80.400.008.20
Table 4. The overall results for the RMSE between each frame the relative error in distance.
Table 4. The overall results for the RMSE between each frame the relative error in distance.
RMSERelative Error Distance (%)
X PositionY PositionZ Position
Urban and CountrySURF5.22522.2049.64560.000701
rSYBA5.50192.89995.34890.000503
UrbanSURF8.475213.69525.220.00457
rSYBA7.8156.86489.66990.00538
CountrySURF11.9142.62421.73230.00329
rSYBA4.26940.320061.70920.005206
Table 5. Average relative error results for 3 × 3 homography matrix across all images.
Table 5. Average relative error results for 3 × 3 homography matrix across all images.
rSYBASURF
0.071420.393460.078774Average0.0739050.733570.08524Average
0.155470.072370.515380.71210.158590.075670.544690.95745
0.105784.94470.0718980.0827916.79070.07190

Share and Cite

MDPI and ACS Style

Zhang, D.; Raven, L.A.; Lee, D.-J.; Yu, M.; Desai, A. Hardware Friendly Robust Synthetic Basis Feature Descriptor. Electronics 2019, 8, 847. https://doi.org/10.3390/electronics8080847

AMA Style

Zhang D, Raven LA, Lee D-J, Yu M, Desai A. Hardware Friendly Robust Synthetic Basis Feature Descriptor. Electronics. 2019; 8(8):847. https://doi.org/10.3390/electronics8080847

Chicago/Turabian Style

Zhang, Dong, Lindsey Ann Raven, Dah-Jye Lee, Meng Yu, and Alok Desai. 2019. "Hardware Friendly Robust Synthetic Basis Feature Descriptor" Electronics 8, no. 8: 847. https://doi.org/10.3390/electronics8080847

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop