-
Notifications
You must be signed in to change notification settings - Fork 3
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
Priority scores for costmap height generators #29
Comments
Yeah, +1! |
Do you want this for GSoC? I could take a look (in a couple of weeks). Just need a good mechanism to combine results from different height generators. Options are: just choose randomly, assign a priority to each generator. Then the question would be: after how many failed tries should a generator with lower priority be chosen. |
Yeah, partly, but no rush. I think my student will be pretty busy with setting up everything else and getting tasks running on normal planes first for the next few weeks. Concerning the options, I'd go for the second one, no? This way we could distinctively decide which one takes precedence over the others. Concerning the retry count, what is a failure when merging the costmaps? |
Oh no, I mean, if a solution wasn't good enough and was rejected by a validator, should we try the same height generator again or resort to the second highest priority one. Otherwise, we can just leave only one height generator when combining different costmaps and choose the one that has the highest priority. But then a single height generator function will have to give you heights for different shelves (say it randomly decides which shelf it like more), whereas, when having multiple generators associated with a costmap we could have different functions always returning the constant height of their certain shelf. Although, I guess, this will make things really complicated, as if costmaps are not already ...complicated. |
Ah, I see. Thanks for clarifying this. How about choosing the height randomly as well? Then we should have an evenly distributed selection of generated height values over the shelves (i.e. heights) that are in the costmap. Meaning, when one fails, choose another generator at random. When that one fails, choose yet another random one, and so on, until the global max solution count (200 it was, right?). |
Different costmaps have different understanding of what the pose height should be. Priority scores (like the ones for 2d x and y positions) for height generators would be nice.
The text was updated successfully, but these errors were encountered: