-
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
Compilation error #28
Comments
I have the same compile issue on a relatively clean 12.04.3LTS + ROS Groovy install, with errors arising from compiling |
Maybe far too late, or nobody is going to come back here :) I also got this. I tried changing those lines to cloud.header.stamp = ros::Time(header.stamp.sec * 1e6, header.stamp.nsec * 1e-3); and cloud.header.stamp = ros::Time(header.stamp.sec * 1e6, header.stamp.nsec * 1e-3); and then the problem on this file is solved (but I'm not sure if there will be any different in the functionality. After that, I got similar problem with ccny_rgbd_tools/lib_rgbdtools/rgbdtools_git/src/registration/motion_estimation_icp_prob_model.cpp, but it is also solved using similar change. However, I got another error: Linking CXX executable bin/global_cloud_align A quick search seems like it is because I'm using Groovy and this normalizeSecNSec is in Diamondback. |
I am here!! Unluck, I also get this error: It is long time from your comment, so I want to know that have you solve this problem? Best regrads.:) @Veerachart |
@gauss1988 Sorry to say that I haven't been working on this since then. |
change to Now I have the fallowing error: [ rosmake ] Halting due to failure in package ccny_rgbd. The problem is the autor has removed SURF.cpp and SurfDetectorConfig.h: so there are 2 options- u restore it or remove frome code. I propose to restore them and never use :D In /home/wilk/fuerte_workspace/sandbox/ccny_rgbd_tools/ccny_rgbd/src/apps/rgbd_image_proc.cpp:302:69 |
Using Ros Groovy, rosmake gives the following error :
/home/caroline/catkin_ws/src/ccny_rgbd_tools/lib_rgbdtools/rgbdtools_git/src/rgbd_frame.cpp: In member function ‘void rgbdtools::RGBDFrame::constructFeaturePointCloud(rgbdtools::PointCloudFeature&)’:
/home/caroline/catkin_ws/src/ccny_rgbd_tools/lib_rgbdtools/rgbdtools_git/src/rgbd_frame.cpp:276:69: erreur: no match for ‘operator=’ in ‘cloud.pcl::PointCloudpcl::PointXYZ::header.std_msgs::Header_std::allocator::stamp = (((double)((rgbdtools::RGBDFrame_)this)->rgbdtools::RGBDFrame::header.rgbdtools::Header::stamp.rgbdtools::Time::sec * 1.0e+6) + ((double)((rgbdtools::RGBDFrame_)this)->rgbdtools::RGBDFrame::header.rgbdtools::Header::stamp.rgbdtools::Time::nsec * 1.00000000000000002081668171172168513294309377670288085938e-3))’
/home/caroline/catkin_ws/src/ccny_rgbd_tools/lib_rgbdtools/rgbdtools_git/src/rgbd_frame.cpp:276:69: note: candidate is:
/opt/ros/groovy/include/ros/time.h:169:22: note: ros::Time& ros::Time::operator=(const ros::Time&)
/opt/ros/groovy/include/ros/time.h:169:22: note: no known conversion for argument 1 from ‘double’ to ‘const ros::Time&’
/home/caroline/catkin_ws/src/ccny_rgbd_tools/lib_rgbdtools/rgbdtools_git/src/rgbd_frame.cpp: In member function ‘void rgbdtools::RGBDFrame::constructDensePointCloud(rgbdtools::PointCloudT&, double, double) const’:
/home/caroline/catkin_ws/src/ccny_rgbd_tools/lib_rgbdtools/rgbdtools_git/src/rgbd_frame.cpp:348:69: erreur: no match for ‘operator=’ in ‘cloud.pcl::PointCloudpcl::PointXYZRGB::header.std_msgs::Header_std::allocator::stamp = (((double)((const rgbdtools::RGBDFrame_)this)->rgbdtools::RGBDFrame::header.rgbdtools::Header::stamp.rgbdtools::Time::sec * 1.0e+6) + ((double)((const rgbdtools::RGBDFrame_)this)->rgbdtools::RGBDFrame::header.rgbdtools::Header::stamp.rgbdtools::Time::nsec * 1.00000000000000002081668171172168513294309377670288085938e-3))’
/home/caroline/catkin_ws/src/ccny_rgbd_tools/lib_rgbdtools/rgbdtools_git/src/rgbd_frame.cpp:348:69: note: candidate is:
/opt/ros/groovy/include/ros/time.h:169:22: note: ros::Time& ros::Time::operator=(const ros::Time&)
/opt/ros/groovy/include/ros/time.h:169:22: note: no known conversion for argument 1 from ‘double’ to ‘const ros::Time&’
See post on Ros Answers : http://answers.ros.org/question/93096/ccny_rgbd-compilation-error/
The text was updated successfully, but these errors were encountered: