-
Notifications
You must be signed in to change notification settings - Fork 31
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
ROS Integration #227
Comments
With ROS1 development currently frozen, I would consider ROS2. ROS2 addresses many of the shortcomings of ROS1, and is coming up on its third stable release. I have no personal experience with ROS2, but am considering using it in my own research. |
FROM SLACK
|
|
Id like to look at the messages that GMapping uses. The way ZMQ interface works is only one message type but then JSON pack the instructions inside that message. We could go either way, and pretty sure we will end up changing it again. My feeling is we should choose one direction to get the functionality in place and then tune the API once we have some experience? |
Looks like these are the two main messages in the example: #include <geometry_msgs/PoseStamped.h>
#include <tf/transform_broadcaster.h> |
I think the gmapping/turtlebot example should be separated from the wider ROS integration issue.
2.1. is very similar in spirit to isam server; 2.2. exposes the interface as a set of services and is much closer to the request/reply concept we discussed when building graff. As I'm biased to the latter, I'll try to get a proof of concept going and report back. In any event, it would be good to get some more opinions on this before fully committing one way or another |
Here a very limited version of what I meant with 2.2. in the previous comment. It uses graff to talk back to caesar. |
right cool, i like the second option too (but biased to do that directly in Julia like first) and also skip Graff. We can then replicate the Graff calls inside Caesar. I mean something like start up CaesarCore and it works via ROS
|
Also, if the go between is in C++ can rather work through ZMQ than Graff. |
see also: ROS PoC wiki page |
Is there an update for roscpp.jl? |
Hi @autonomobil, I didn't see your post until now, sorry! We have been using the RobotOS.jl interface (using PyCall) but haven't worked more on the roscpp implementation yet. Here is the latest work that allows consumption of bagfiles without using roscore:
|
I should add this is becoming a standard feature that still requires some documentation, the basic idea is, and make sure ROS is in the environment before running: using Pkg
ENV["PYTHON"]="/usr/bin/python" # or whichever one can run >>> import rospy
Pkg.build(PyCall)
using RobotOS
using Caesar That should activate the ROS features in Caesar. Current ExamplesThey might be slightly out of date, but fairly close. We are currently working here so these will be updated in due course. |
Please add your comments or support for this requirement here.
The text was updated successfully, but these errors were encountered: