DLR-RM / 3DObjectTracking

Algorithms and Publications on 3D Object Tracking
MIT License
709 stars 129 forks source link

random vs uniform sampling #28

Closed teigl closed 2 years ago

teigl commented 2 years ago

What is the reasoning behind randomly sampling contour points? My initial thought would be uniform sampling. Great work btw!

manuel-stoiber commented 2 years ago

The main reason is that random sampling allows to define the number of used points after the sparse viewpoint model is generated (as long as the number is smaller than the number of sampled points). For uniform sampling, the model would have to be generated every time the number of points is changed. However, in general, uniform sampling is also be possible.

teigl commented 2 years ago

Ok thanks!