I have a set of points (let's say 10000 points), which are detected with much time.
Then, some points (let's say 100 points) are quickly detected, which should be included by the 10000 points. The quick method may influence by noise. Thus, there may be 2~3 points is not included by the 10000 points.
Now, I want to match the 100 points with the 10000 points. Only coordinate of points is known.
I have tried the point cloud registration method. But it cost too long time, and often failed.
Is there any other method which is faster and more robust?
Does graph method work? For example, the Ullmann
method.
I have a set of points (let's say 10000 points), which are detected with much time.
Then, some points (let's say 100 points) are quickly detected, which should be included by the 10000 points. The quick method may influence by noise. Thus, there may be 2~3 points is not included by the 10000 points.
Now, I want to match the 100 points with the 10000 points. Only coordinate of points is known.
I have tried the point cloud registration method. But it cost too long time, and often failed.
Is there any other method which is faster and more robust?
Does graph method work? For example, the Ullmann
method.
1 Answer
Reset to default 0Here are two methods you could look into:
- https://dl.acm./doi/10.1145/1360612.1360684
- https://isprs-annals.copernicus./articles/II-5-W2/283/2013/
The second one builds upon the first one. They have the advantage that they do not need an initial guess of the transformation between the two point clouds (in contrast to e.g. ICP).
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745557608a4632913.html
Ullmann
method is not a software library. It is a graph method, which can match a sub-graph with a graph. But theUllmann
method requires that the point of sub-graph should must included by the whole graph. So, I doubt whether theUllmann
works for point cloud registration. In the other hand, do you know some other faster and more rubost point cloud registration method? – Qiang Zhang Commented Nov 20, 2024 at 0:21