Grid map obstacle detection method fusing probability and height information
11302105 · 2022-04-12
Assignee
Inventors
- Wei Zhong (Liaoning, CN)
- Shenglun Chen (Liaoning, CN)
- Haojie Li (Liaoning, CN)
- Zhihui Wang (Liaoning, CN)
- Risheng Liu (Liaoning, CN)
- Xin Fan (Liaoning, CN)
- Zhongxuan Luo (Liaoning, CN)
Cpc classification
G06V20/58
PHYSICS
International classification
G06V20/58
PHYSICS
Abstract
The present invention discloses a grid map obstacle detection method fusing probability and height information, and belongs to the field of image processing and computer vision. A high-performance computing platform is constructed by using a GPU, and a high-performance solving algorithm is constructed to obtain obstacle information in a map. The system is easy to construct, the program is simple, and is easy to implement. The positions of obstacles are acquired in a multi-layer grid map by fusing probability and height information, so the robustness is high and the precision is high.
Claims
1. A grid map obstacle detection method fusing probability and height information, comprising the following steps: 1) in the case where a previous grid state of a grid and a current grid state are known, obtaining a measured grid state measured in real time by a sensor based on the previous grid state and the current grid state by Bayesian inference, and when a probability P.sub.i of the grid determined by the Bayesian inference is greater than P.sub.min, restoring virtual points of the grid using an H map; 2) calculating X and Z coordinates of the grid according to the position where the grid is located; restoring highest points of the grid according to the H map, which are called virtual points; extracting virtual points and restoring three-dimensional boundaries; and when the probability of the grid is less than P.sub.min, or the Y coordinate is less than h.sub.min, not restoring the virtual point; 3-1) dividing the current field of view of the sensor into f parts, and then, sampling in each part using a sliding window; selecting initial values using the sliding window, setting the sliding window and the size of the window to a×b; when a threshold condition is met, selecting the virtual points of the grid with the maximum probability in the sliding window as alternative initial values C.sub.i, the probability value being P.sub.i; 3-2) when there is a weighted distance between the initial values C.sub.i and other initial values C.sub.j, and the weighted distance is the probability of the grid, setting the initial values C.sub.i and C.sub.j to the same category k when the weighted distance is within a threshold d.sub.1; when the probability of some virtual points C.sub.k.sup.m in the category k is greater than that of other points C.sub.k.sup.n, that is, P.sub.k.sup.m>P.sub.k.sup.n+ε, ε being a constant less than 1 and greater than 0, using the points C.sub.k with higher probability to calculate a category center, otherwise, using all points; taking the probability of the virtual points as the weight, the category center C.sub.k being the weighted mean
2. The grid map obstacle detection method fusing probability and height information according to claim 1, wherein P.sub.min, h.sub.min, N.sub.min, d.sub.1, d.sub.2, d.sub.3, p.sub.1, T and num in the method are set thresholds.
Description
DESCRIPTION OF DRAWINGS
(1)
(2)
(3)
(4)
DETAILED DESCRIPTION
(5) The present invention proposes a grid map obstacle detection method fusing probability and height information, which is described in detail with reference to the accompanying drawings and embodiments as follows:
(6) The overall flow is shown in
(7) In order to illustrate that the specific algorithm, there are the following settings in the present invention: setting that there is a spatial rectangular coordinate system XYZ, the X axis is horizontal to the right, the Y axis is upright, and the Z axis is forward; and setting that the grid map is created on the XOZ plane, and XOZ reflects the current horizontal plane. P represents a probabilistic grid map, and H represents an elevation grid map. On this basis, the grid map obstacle detection method is described. As shown in
(8) 1) Bayesian Inference
(9) As shown in
(10)
If the probability of the grid is greater than P.sub.min, restoring virtual points of the grid using an H map.
(11) 2) Extracting Virtual Points, Restoring Three-Dimensional Boundary
(12) As shown in
(13) 3) Clustering Virtual Points
(14) 3-1) Dividing Field of View, Selecting Initial Values Using Sliding Window
(15) First, dividing the current field of view into f parts, and then, sampling in each part using a sliding window. Setting the sliding window to W and the size of the window to a×b. If the number N.sub.w of grids with virtual points in the sliding window is greater than N.sub.min, selecting the virtual points of the grid with the maximum probability in the sliding window as alternative initial values C.sub.i, the probability value being P.sub.i.
(16) 3-2) Consolidating Initial Values
(17) As shown in
(18)
of the selected virtual points, the probability P.sub.k of the center being
(19)
Stopping after K centers are selected.
(20) 3-3) Clustering and Extracting Bounding Boxes
(21) Entering the clustering stage after selecting the initial values, using the KMeans clustering algorithm for all virtual points, calculating the weighted distance P.sub.k|C.sub.i−C.sub.k|.sub.p from all virtual points to the clustering center C.sub.k in the clustering process, ∥.sub.p being a p norm, if the weighted distance from a certain virtual point to any clustering center exceeds d.sub.max, eliminating the virtual point. When updating the clustering center, calculating the weighted mean of all samples in the category as a new clustering center, the clustering center being the probability mean of all virtual points in the category. Extracting bounding boxes of all categories after clustering, the bounding boxes being described respectively by 7 values: clustering center C.sub.k, probability P.sub.k, maximum Y coordinate Y.sub.max, maximum and minimum grid serial numbers in the X direction X.sub.max and X.sub.min, and maximum and minimum grid serial numbers in the Z direction Z.sub.max and Z.sub.min; visualizing the bounding boxes on the XOZ plane.
(22) As shown in
(23) 3-4) Merging Categories
(24) After KMeans clustering, quite close categories may occur, so a merging operation is required at this time. If the weighted distance between probabilities P.sub.i and P.sub.j of centers C.sub.i and C.sub.j of two categories is less than d.sub.2, merging the two categories, and if the distance between the bounding boxes of the two categories in one of the X and Z directions is less than d.sub.3, merging the two categories.
(25) 3-5) Correcting Bounding Boxes
(26) After merging, there may be two situations where the bounding boxes are overlapped and the bounding boxes are separated. If the bounding boxes are overlapped, traversing the bounding boxes and eliminating overlapping regions; and if the bounding boxes are separated, checking the bounding boxes around empty regions, incorporating if the sum of increase of a bounding box in the X and Z directions does not exceed T when an empty region is incorporated into the bounding box, otherwise, checking empty regions adjacent to the empty region, if the number of empty regions that cannot be incorporated exceeds num, creating a new bounding box around these empty regions, the bounding box being described by 5 values: center B.sub.i, maximum and minimum grid serial numbers in the X direction X.sub.max and X.sub.min, and maximum and minimum grid serial numbers in the Z direction Z.sub.max and Z.sub.min, the new bounding box being called a fuzzy obstacle because the probability value of the empty region is extremely low. Such box is used to mark regions, as shown in
(27) P.sub.min, h.sub.min, N.sub.min, d.sub.1, d.sub.2, d.sub.3, p.sub.1, T and num in the algorithm are set thresholds.