Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Occlusion problems #8

Open
thomassedlmayer opened this issue Jan 31, 2023 · 0 comments
Open

Occlusion problems #8

thomassedlmayer opened this issue Jan 31, 2023 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@thomassedlmayer
Copy link

I noticed that the concaveman algorithm leads to partially transparent objects in the occlusion process. The algorithm influences the outer hull of the objects' 2d projection based on concaveman parameters only. The concaveman algorithm should really only be used for pure 2d tasks, I think. Though, the occlusion task requires the consideration of 3d.

I made the following screenshot to show the consequences:
example-occlusion-error2
The red dots pose the supposedly visible vertices of the white delivery van. I guessed that the red lines may aproximately pose the 2d-projected concave hull of the van. The front left vertex of the van is visible even though it is obviously occluded by the van itself. This leads to some kind of spike in the hull. It is added to the hull based on the concaveman algorithm. This means it is not considered at all that it is actually behind other surfaces of the same car. This results in the problem that the three yellow dots are detected by the sensor model.

I guess, as soon as you're working on a 2d projection you should not add vertices back to the hull. You can not know if they are visible without checking/comparing some kind of distance relation or even surface occlusion.

The mentioned problem occurs quite often and you can not rely on detections to be actually visible based on basic understanding of a 3d world. After checking some different scenarios, it seems rather lucky that vehicles occlude other vehicles the correct way. Unfortunately, we can not use the sensor model for arbitrary scenarios.

Removing the concaveman algorithm leads to more reliable results but then any detections that are not on the convex hull of the 2d projection are omitted even if they should be visible. This may lead to kind of satisfying results on the object level. On the detection level though it seems rather random which vertices are added and which are not.

@ClemensLinnhoff ClemensLinnhoff self-assigned this Mar 10, 2023
@ClemensLinnhoff ClemensLinnhoff added the bug Something isn't working label Mar 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
Development

No branches or pull requests

2 participants