-
Notifications
You must be signed in to change notification settings - Fork 19
Inquiry on ROS application and paper #6
Comments
Hi Philip, welcome to the research topic in general, and to this repo in particular. Quite a dense question. I'll do my best to help you, but please ask again if clarification is needed.
First thing first, your application is a classical example of online coverage path planning. Moreover, your task is not to fully cover the space as fast as possible, but to cover as much space as possible in a given time. This make your and our problems similar, but completely different. Our solution has constraints that are not applied in your case, like avoid covering already covered space (because soil compaction in agriculture).
I mentioned it in the previous paragraph but I will explain myself a bit better. You want to cover as much space as possible in a given time. According to your comment, your objective function is
Not really. Our solution is swath-based (based on boustrophedon patterns, as you called it). We avoid losing precision with the grid by not using a grid at all. There are other repositories that actually use them: https://github.com/athakapo/DARP and https://github.com/18alantom/CoveragePathPlanning. Both implement the same algorithm, but you can compare them.
No, the GPS is because it's nice for visualization, but not required. Our package is focused on agriculture, so our data usually is georeferenced. However, the package works in local coordinates, so no georeferenced is required. I'll recommend you to take a deep look into the docs of the main repo https://github.com/Fields2Cover/Fields2Cover. Three more things:
Right now this algorithms get out of the scope of the library, but if you want to contribute, I'm open to broaden it. I hope it helps you :) |
Thank you for the brisk response, let me try to clarify this first: This map is about 30 by 35 meters in area. If there is a way, how would you calibrate your algorithm(in ROS) for a robot wheeled robot with maximum velocity of 0.22m/s and accleration of 1.0m/s to cover this area in optimal time? |
Unfortunately, this version of the library only supports convex environments, so your example is a bit problematic for this case. As mentioned, I would recommend you using any of the other packages oriented for online coverage path planning. Sorry for not being able to help you more. |
Please be sure that you still helped me regardless. Just to make sure, does
your application also require a known map before hand?
…On Sat, Dec 3, 2022 at 8:46 AM Gonzalo Mier ***@***.***> wrote:
I think random walk or boustrophedon algorithms your team created can
still be used?
Unfortunately, this version of the library only supports convex
environments, so your example is a bit problematic for this case. As
mentioned, I would recommend you using any of the other packages oriented
for online coverage path planning. Sorry for not being able to help you
more.
—
Reply to this email directly, view it on GitHub
<#6 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AND3KDQ4LTWTXYKIAABBGYDWLN2M5ANCNFSM6AAAAAASSIETMY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Yes, it's designed for offline coverage path planning, and it's difficult to create a plan beforehand without knowing the map. |
Hi,
I came across your paper while searching coverage path planning applications, I'm also doing research in this area although my direction is somewhat different. Firstly, I am glad to not be alone discovering the sheer lack of open source applications in he coverage path planning field. I have been seeking other applications I could use for testing and comparison to what I'm trying to develop. Your paper compiles all the accessible applications you could find(I believe about 6 in total). Your addition provides 7 in total.
I would like your view point on which of these applications would provide the most comprehensive comparison. My coverage path planning application calculates coverage based on how much of the map the robot has "seen" with it's sensor because the application is for surveillance and search. The other path planners(as well as yours) seem to be mostly based on boustrophedon patterns that base coverage calculation on how much the map the robot has "physically" travelled across. Because of these two differing directions, it's a bit difficut for me to come up with a performance metric that makes sense, if I wish to compare my application with whats already out there. What would you suggest?
I would also like to know if your algorithms can be used with just an occupancy grid map. From what I glean, the robot must have access to GPS?
The text was updated successfully, but these errors were encountered: