-
Notifications
You must be signed in to change notification settings - Fork 76
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
Install on Hydro #32
Comments
It shows no rosmake errors on my ROS hydro, but it displays nothing on Rviz |
Could you please write the commands you use to run the code? What's the console output? |
$roslaunch ccny_openni_launch openni.launch SUMMARYPARAMETERS
NODES ROS_MASTER_URI=http://localhost:11311 core service [/rosout] found |
The RGBD Processing node is not correctly grabbing the RGBD data from your camera. In my case I had to change in the code the name of the topics it subscribes to, but I'm sure there's a more elegant way of doing it using remap. I now subscribe to the following topics in the rgbd_image_proc node: When it works your console will constantly display information about the number of features detected from the GFT detector. |
Many thanks! Could you please write the commands how you subscribe these topics? |
Well I don't use additional commands, I just changed these lines inside rgbd_image_proc.cpp (this is my final version):
sub_rgb_.subscribe (rgb_image_transport_,
"/camera/rgb/image", queue_size_);
sub_depth_.subscribe(depth_image_transport_,
"/camera/depth/image_raw", queue_size_); //16UC1
sub_rgb_info_.subscribe (nh_,
"/camera/rgb/camera_info", queue_size_);
sub_depth_info_.subscribe(nh_,
"/camera/depth/camera_info", queue_size_);
First of all: does this command: |
Many thanks! Finally it works! |
Hi guys, thank you for providing this package, but I would like to know can I run the package on hydro? I install it in a rosbuild workspace on hydro. It seems that does not work well. Could you please have a look at this link? http://answers.ros.org/question/145411/error-on-installing-ccny-package-on-hydro/. Many thanks.
The text was updated successfully, but these errors were encountered: