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

robbycandra's profile - activity

2021-02-03 18:54:06 -0500 received badge  Necromancer (source)
2019-11-13 06:01:13 -0500 received badge  Nice Answer (source)
2019-11-13 06:01:04 -0500 received badge  Student (source)
2017-06-02 15:04:56 -0500 received badge  Self-Learner (source)
2017-06-02 15:04:56 -0500 received badge  Teacher (source)
2017-05-23 19:27:14 -0500 received badge  Famous Question (source)
2016-12-19 07:35:58 -0500 received badge  Notable Question (source)
2016-12-06 04:36:51 -0500 received badge  Enthusiast
2016-12-05 07:00:50 -0500 received badge  Popular Question (source)
2016-12-04 17:51:05 -0500 answered a question Which package should I use in CMakeLists.txt?

I had same problem here : http://answers.ros.org/question/24935... The solution for move_group_interface is

find_package(catkin REQUIRED COMPONENTS
   moveit_ros_planning_interface
   ..... 
)
2016-12-04 17:47:17 -0500 answered a question how to install move_group_interface from source

Thanks to @gvdhoorn

I was looking for solution at the wrong place. This is how to make it works:

 find_package(catkin REQUIRED COMPONENTS
       moveit_ros_planning_interface
       ..... 
    )
2016-12-04 13:33:55 -0500 commented question how to install move_group_interface from source

Hi @gvdhoorn

Thanks for your answer. But I already check /opt/ros/kinetic/include folder, and cannot find moveit/move_group_interface/move_group_interface.h file

I don't see any error when build moveit. I already try catkin_make and catkin build.

I put my CMakeLists.txt in my question

2016-12-04 13:20:28 -0500 received badge  Editor (source)
2016-12-04 13:16:22 -0500 asked a question how to install move_group_interface from source

Hi...

I tried to install moveit / kinetic. I follow Source Install Tutorial from http://moveit.ros.org/install/source/ , but include file and llibrary not installed on my system

on my program .cpp

 "#include <moveit//move_group_interface/move_group_interface.h>  
  --> give error : unresolved inclusion.

if I copy the header file to correct location, on build time i got:

undefined reference to `moveit::planning_interface::MoveGroupInterface::MoveGroupInterface

Looks like the move_group_interface not installed. Same thing happen with planning_scene_interface (on moveit_ros too).

But other package on moveit_core is OK.

Please help how to install moveit from source.

Thanks.

Update: This is my CMakeLists.txt

 cmake_minimum_required(VERSION 2.8.3)
 project(robin_001)

find_package(catkin REQUIRED COMPONENTS
  cmake_modules
  cv_bridge
  image_transport
  roscpp
  sensor_msgs
  std_msgs
)

include_directories(
  ${catkin_INCLUDE_DIRS}
)

${catkin_EXPORTED_TARGETS})

add_definitions(
   -std=c++11
 )

include_directories(
   $ENV{OPENNI2_INCLUDE}
   /usr/local/include   #for realsense  
 )

link_directories(
    $ENV{OPENNI2_REDIST}    
/usr/local/lib          #for realsense
)

link_libraries(
   -lOpenNI2            
   -lrealsense         
)


find_package(Eigen REQUIRED)
include_directories(SYSTEM ${Boost_INCLUDE_DIR} ${EIGEN_INCLUDE_DIRS})

add_executable(Robin001  
    src/ArmControl.cpp
    src/ArmPosition.cpp
    src/Calibration.cpp
    src/Cam2World.cpp
    src/ColorTracking.cpp
    src/MarkPointDetector.cpp
    src/RobinArm.cpp
    src/SenseStream.cpp
)
target_link_libraries(Robin001 ${catkin_LIBRARIES})

add_executable(RobinMoveit  
   src/robin_moveit.cpp
)
target_link_libraries(RobinMoveit ${catkin_LIBRARIES})
2016-10-11 02:27:33 -0500 commented answer Running Turtlebot_gazebo error

In my case, the problem with TURTLEBOT_GAZEBO_WORLD_FILE fixed just by reboot my computer. But there are another problems. Fortunately there is a good solution in http://answers.ros.org/question/19940...

2016-10-10 19:06:22 -0500 received badge  Supporter (source)