ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

ROS_NOOB_CYBORG's profile - activity

2015-09-18 18:59:46 -0500 received badge  Famous Question (source)
2015-03-20 03:28:58 -0500 received badge  Notable Question (source)
2014-08-15 03:37:15 -0500 received badge  Taxonomist
2014-03-11 05:08:38 -0500 received badge  Famous Question (source)
2013-09-11 14:18:09 -0500 received badge  Popular Question (source)
2013-09-06 20:26:07 -0500 received badge  Famous Question (source)
2013-07-21 17:30:00 -0500 received badge  Famous Question (source)
2013-05-06 14:55:01 -0500 received badge  Famous Question (source)
2013-04-08 06:34:54 -0500 received badge  Notable Question (source)
2013-04-05 15:30:04 -0500 received badge  Popular Question (source)
2013-04-03 16:50:10 -0500 commented answer Undefined Reference to boost

I put my target_link_libraries (pose_sensor boost_system) after my target_link_libraries(pose_sensor ssf_core) and for apt-get install libboost-all-dev the results I get is 0 upgraded, 0 newly installed, 0 to remove and 29 not upgraded. Still get error haha..

2013-04-02 18:23:08 -0500 commented answer Undefined Reference to boost

Yeah..So what I did is put that line after rosbuild_add_executable(pose_sensor src/main.cpp src/pose_sensor.cpp). And..the results is the same. Any other idea..Thanks!

2013-04-02 02:56:53 -0500 received badge  Notable Question (source)
2013-04-01 18:01:53 -0500 commented answer Undefined Reference to boost

Hi, I've put it the line under my "target_link_libraries(pose_sensor ssf_core)", but still I'm generating the error. Any other solution, thanks!

2013-04-01 07:41:53 -0500 received badge  Popular Question (source)
2013-03-31 21:30:18 -0500 asked a question Undefined Reference to boost

Hi guys, I've been getting this error lately every time I compile my ethzasl_sensor_fusion.

The error I received is below:

Linking CXX executable ../bin/pose_sensor CMakeFiles/pose_sensor.dir/src/main.o: In function __static_initialization_and_destruction_0': /usr/local/include/boost/system/error_code.hpp:214: undefined reference toboost::system::generic_category()' /usr/local/include/boost/system/error_code.hpp:215: undefined reference to boost::system::generic_category()' /usr/local/include/boost/system/error_code.hpp:216: undefined reference toboost::system::system_category()' CMakeFiles/pose_sensor.dir/src/pose_sensor.o: In function __static_initialization_and_destruction_0': /usr/local/include/boost/system/error_code.hpp:214: undefined reference toboost::system::generic_category()' /usr/local/include/boost/system/error_code.hpp:215: undefined reference to boost::system::generic_category()' /usr/local/include/boost/system/error_code.hpp:216: undefined reference toboost::system::system_category()' collect2: ld returned 1 exit status make[3]: * [../bin/pose_sensor] Error 1 make[3]: Leaving directory /home/fyp4211/ROS_Pack/ethzasl_sensor_fusion/ssf_updates/build' make[2]: *** [CMakeFiles/pose_sensor.dir/all] Error 2 make[2]: Leaving directory/home/fyp4211/ROS_Pack/ethzasl_sensor_fusion/ssf_updates/build' make[1]: * [all] Error 2 make[1]: Leaving directory `/home/fyp4211/ROS_Pack/ethzasl_sensor_fusion/ssf_updates/build' -------------------------------------------------------------------------------} [ rosmake ] Output from build of package ssf_updates written to: [ rosmake ] /home/fyp4211/.ros/rosmake/rosmake_output-20130401-152352/ssf_updates/build_output.log

The cmake file is shown below:

cmake_minimum_required(VERSION 2.4.6)
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)

# Set the build type.  Options are:
#  Coverage       : w/ debug symbols, w/o optimization, w/ code-coverage
#  Debug          : w/ debug symbols, w/o optimization
#  Release        : w/o debug symbols, w/ optimization
#  RelWithDebInfo : w/ debug symbols, w/ optimization
#  MinSizeRel     : w/o debug symbols, w/ optimization, stripped binaries
#set(ROS_BUILD_TYPE RelWithDebInfo)

rosbuild_init()

#set the default path for built executables to the "bin" directory
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
#set the default path for built libraries to the "lib" directory
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
#gencfg()
rosbuild_genmsg()

add_definitions (-Wall)

list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)

# get eigen
find_package(Eigen REQUIRED)
include_directories(${Eigen_INCLUDE_DIRS})

rosbuild_add_boost_directories()
rosbuild_add_executable(pose_sensor src/main.cpp src/pose_sensor.cpp)
rosbuild_link_boost(pose_sensor filesystem system)
set_property(TARGET pose_sensor PROPERTY COMPILE_DEFINITIONS POSE_MEAS)
rosbuild_add_compile_flags(pose_sensor "-O3")
target_link_libraries(pose_sensor ssf_core)

rosbuild_add_boost_directories()
rosbuild_add_executable(position_sensor src/main.cpp src/position_sensor.cpp)
rosbuild_link_boost(position_sensor filesystem system)
set_property(TARGET position_sensor PROPERTY COMPILE_DEFINITIONS POSITION_MEAS)
rosbuild_add_compile_flags(position_sensor "-O3")
target_link_libraries(position_sensor ssf_core)

Can you guys help me out with this problem. Thanks!!

2013-03-31 13:49:52 -0500 asked a question Cooperative SLAM for Multi UAV

Hi guys,

Does anyone of you know how to perform a decentralized cooperative slam for multi uav. Like the one in sFly project. I just want to know what kind of software they used. Thanks, really appreciate for any replies!!

2013-03-22 02:11:54 -0500 received badge  Notable Question (source)
2013-03-07 03:04:08 -0500 received badge  Notable Question (source)
2013-03-07 03:04:08 -0500 received badge  Popular Question (source)
2013-02-28 21:24:47 -0500 received badge  Famous Question (source)
2013-01-27 17:57:35 -0500 commented answer PTAM to reconstruct scene

I'll take a look at it, thanks!

2013-01-23 15:21:27 -0500 received badge  Notable Question (source)
2013-01-20 18:47:21 -0500 received badge  Popular Question (source)
2013-01-13 15:51:21 -0500 commented answer How to obtain CameraInfo Message

Okay thanks for the information. Another question I want to ask is how you get the information regarding the "Header"?

2013-01-13 15:22:43 -0500 received badge  Supporter (source)
2013-01-11 19:41:32 -0500 asked a question How to obtain CameraInfo Message

Hi guys,

I am doing this robot simulation on the UDK/UsarSim and have been able to publish image from the Robot Camera in the simulator to the ROS System. Then I want to use this image to perform SLAM using the V-Slam from willow garage. The problem is that the V-Slam node also subscribe to the CameraInfo Message. So my question is how to obtain the Camera Info Message from the USARSim/UDK?

Thanks

2013-01-03 14:59:36 -0500 asked a question PTAM to reconstruct scene

Hi guys,

Do anyone of you know how to reconstruct scene model/area from the information obtained from PTAM (using point cloud maybe) or any visual slam algo like RGBD SLAM or V-Slam.

Thanks

2013-01-03 14:56:01 -0500 commented answer Publish JPEG Image from Drive

Ok man, thanks for the link! :) I try mine using python btw

2013-01-03 14:54:12 -0500 received badge  Popular Question (source)
2012-12-14 18:20:02 -0500 asked a question Publish JPEG Image from Drive

Hi guys, I have this python code that is able to save an image on my hardrive in JPEG format. The question I want to ask if any of you guys know how to publish this image as a sensor_msg/image in ROS. Thanks

2012-12-09 12:35:38 -0500 received badge  Famous Question (source)
2012-12-07 18:16:04 -0500 commented answer Gazebo crash for Hector_quadrotor demo

Haven't yet. Up until now, I still don't know how to debug the ROS Gazebo.

2012-12-07 18:13:32 -0500 asked a question Obtained Stream Image from another computer

On the UDK/USARSim, there's this dedicated port for image stream from a camera in a simulation. It uses the UDK's Image Server. Does anybody know how to obtain the image from the UDK Image Server using any package available in ROS? Btw the UDK is located in a different computer. Thanks.

2012-11-13 23:14:07 -0500 received badge  Student (source)
2012-11-13 12:21:54 -0500 received badge  Notable Question (source)
2012-11-11 08:35:51 -0500 received badge  Popular Question (source)
2012-10-24 04:50:49 -0500 marked best answer One Ubuntu two ROS System

Hi, just wanna ask, is it possible two have more than 2 ROS system on one Ubuntu system? Example Ubuntu will both have fuerte and electric.