-
Notifications
You must be signed in to change notification settings - Fork 44
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
Rviz UI #57
Comments
Sounds like good potential inhancements! This has the ability to process internal voids with the new F2C release and update in #53. The rviz drawing UI not so much, but that would be relatively straight forward to add. I actually did some of my testing by using the An effort from yourself or others interested in this capability would be greatly appreciated and I'd be happy to review / merge it to have that available for the community! I hope you don't mind, I renamed the ticket to be a bit more descriptive |
The opennav_coverage_demo is working for me, but I wanted to integrate opennav_coverage I made a package, points_to_polygon, which takes /clicked_point, publishes a Polygon topic and an [x,y] topic. My project (jazzy) is based on linorobot2 (huumble), using linorobot2's rviz, slam and navigation launch. The node in coverage.launch.py is points2polygon_coverage.py, [points2polygon_coverage-1] [[-3.3, -4.5], [-2.1, 1.3], [1.5, 1.1], [0.4, -4.4], [-3.3, -4.5]] I get a similar error if the demo_coverage.py field is fed to navigateCoverage() within points2polygon_coverage.py, The opennav_coverage README mentions an eventual tutorial about using the coverage server, which would be very helpful for integrating the coverage server into a project. Here is the points_to_polygon -PointsToPolygonNode.py import rclpy class PointsToPolygonNode(Node):
def main(args=None):
if name == 'main': Here is the points2polygon_coverage.py ( modified from opennav_coverage_demo/demo_coverage.py). #! /usr/bin/env python3 modified fromCopyright 2023 Open Navigation LLCLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.from enum import Enum from action_msgs.msg import GoalStatus class TaskResult(Enum): class CoverageNavigatorTester(Node):
def main():
if name == 'main': Here is the coverage.launch.py. modified fromCopyright (c) 2023 Open Navigation LLCLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.import os from ament_index_python.packages import get_package_share_directory def generate_launch_description():
Here is the coverage_bringup.launch.py modified fromCopyright (c) 2023 Open Navigation LLCLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.from launch import LaunchDescription def generate_launch_description():
|
I have used this ros package https://github.com/ethz-asl/polygon_coverage_planning. It is interesting because, It can handles obstacle polygons inside an external polygon that define the terrain limits. The ui is also interesting allowing for polygon drawing in rviz and capability to draw over a satellite image, row overlap etc. But has a few drawbacks :
The text was updated successfully, but these errors were encountered: