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

AlexChris003's profile - activity

2019-11-28 23:10:56 -0500 received badge  Famous Question (source)
2019-02-11 09:34:56 -0500 received badge  Famous Question (source)
2019-02-11 08:05:32 -0500 received badge  Notable Question (source)
2019-02-11 08:05:32 -0500 received badge  Popular Question (source)
2018-06-01 18:26:47 -0500 received badge  Famous Question (source)
2018-05-02 00:58:41 -0500 asked a question ‘create’ is not a member of ‘cv::Tracker’ - ros_object_analytics

‘create’ is not a member of ‘cv::Tracker’ - ros_object_analytics I wanted to use the IntelROSProject and followed the in

2018-04-25 11:04:01 -0500 received badge  Popular Question (source)
2018-04-20 01:17:19 -0500 marked best answer kobuki_mgs missing

I wanted to use the "IntelROSProject" and followed the guidelines. But upon running the command "catkin_make", I got an error saying that cmake failed. Reason was that he was missing kobuki_msgs, but the github page for the package that depends on it (ros_moving_object) says that it should be part of the full desktop install.

And in fact, I could find the kobuki_msgs... Why aren't they part anymore of the full desktop install?

2018-04-20 01:17:18 -0500 commented answer kobuki_mgs missing

Oh, okay, my bad. Thanks for your hint! But the way they listeted the needed packages, it seemed to me kobuki is also pa

2018-04-19 10:31:31 -0500 asked a question kobuki_mgs missing

kobuki_mgs missing I wanted to use the "IntelROSProject" and followed the guidelines. But upon running the command "catk

2018-04-05 03:54:14 -0500 received badge  Enthusiast
2018-04-04 01:58:18 -0500 received badge  Notable Question (source)
2018-04-02 16:45:15 -0500 received badge  Popular Question (source)
2018-04-02 15:46:13 -0500 commented question Action, face and object recognition, SLAM etc with ROS, Intel RealSense and OpenCV

... again the misspelling °~° But the example code for the image_transport.cpp was copied from the tutorial :D But I don

2018-04-02 15:30:31 -0500 commented question Action, face and object recognition, SLAM etc with ROS, Intel RealSense and OpenCV

should be fixed, don't what happend, all signs where the same...

2018-04-02 15:29:25 -0500 edited question Action, face and object recognition, SLAM etc with ROS, Intel RealSense and OpenCV

Action, face and object recognition, SLAM etc with ROS, Intel RealSense and OpenCV First of all, I'm totally new with RO

2018-04-02 14:00:46 -0500 asked a question Action, face and object recognition, SLAM etc with ROS, Intel RealSense and OpenCV

Action, face and object recognition, SLAM etc with ROS, Intel RealSense and OpenCV First of all, I'm totally new with RO

2018-03-01 19:09:17 -0500 marked best answer CMake Error in rosmsg tutorial

I am in the tutorial at CreateMsgAndSrv and got stuck at chapter 3. Running the command

$ rosmsg show beginner_tutorials/Num

got me the following

Unable to load msg [beginner_tutorials/Num]: Cannot locate message [unint8] in package [beginner_tutorials] with paths [['/home/aha/catkin_ws/src/beginner_tutorials/msg', '/home/aha/catkin_ws/devel/share/beginner_tutorials/msg']]

and searching the web for a solution I stumbled upon a thread where someone had somewhat the same problem and said that he made a

catkin_make install

after the changes at the package.xml and CMakeLists.txt which I did not. But it made sense so I ran the command and then got the following error during the install process

CMake Error at /home/aha/catkin_ws/build/beginner_tutorials/cmake/beginner_tutorials-genmsg.cmake:3    (message):                                                                                             Could not find messages which                                                                          '/home/aha/catkin_ws/src/beginner_tutorials/msg/Num.msg' depends on.                                    Did you forget to specify generate_messages(DEPENDENCIES ...)?                                                         Cannot locate message [unint8] in  package [beginner_tutorials] with paths [['/home/aha/catkin_ws/src/beginner_tutorials/msg']]                                                                                    Call Stack (most recent call first): /opt/ros/kinetic/share/genmsg/cmake/genmsg-extras.cmake:307 (include) beginner_tutorials/CMakeLists.txt:71 (generate_messages)

But I followed the tutorial as it is written and did not forget to specify/uncomment "generate_messages". As I am a Newbie, I am kind of lost now and do not really know how to proceed. Can someone help me out?

System is Ubuntu 16.04 LTS, the ROS-Version is Kinetic and I added

source /opt/ros/kinetic/setup.bash

and

source ~/catkin_ws/devel/setup.bash

to my ~/.bashrc. Hope this sufficient information for the beginning...

EDIT1: Content of package.xml:

<?xml version="1.0"?>
<package format="2">
  <name>beginner_tutorials</name>
  <version>0.0.0</version>
  <description>The first test package</description>

  <maintainer email="xxx">xxx</maintainer>

  <license>GPLv3</license>

  <buildtool_depend>catkin</buildtool_depend>
  <build_depend>roscpp</build_depend>
  <build_depend>rospy</build_depend>
  <build_depend>std_msgs</build_depend>
  <build_depend>message_generation</build_depend>
  <build_export_depend>roscpp</build_export_depend>
  <build_export_depend>rospy</build_export_depend>
  <build_export_depend>std_msgs</build_export_depend>
  <exec_depend>roscpp</exec_depend>
  <exec_depend>rospy</exec_depend>
  <exec_depend>std_msgs</exec_depend>
  <exec_depend>message_runtime</exec_depend>


  <export>

  </export>
</package>

Content of CMakeLists.txt:

cmake_minimum_required(VERSION 2.8.3)
project(beginner_tutorials)

find_package(catkin REQUIRED COMPONENTS
  roscpp
  rospy
  std_msgs
  message_generation
)

add_message_files(
 FILES
 Num.msg
)

generate_messages(
 DEPENDENCIES
 std_msgs
)

catkin_package()

include_directories(
  ${catkin_INCLUDE_DIRS}
)

Content of Num.msg:

int64 sum
string first_name
string last_name
unint8 age
uint32 score
2018-03-01 19:09:17 -0500 received badge  Scholar (source)
2018-03-01 18:02:08 -0500 received badge  Student (source)
2018-03-01 17:43:16 -0500 received badge  Notable Question (source)
2018-03-01 17:42:57 -0500 commented answer CMake Error in rosmsg tutorial

.... god I'm gonna burrow my self very very very deep sooo sorry for asking a stupid question and in the end it is a typ

2018-03-01 17:42:45 -0500 commented answer CMake Error in rosmsg tutorial

.... god I'am gonna burrow my self very very very deep sooo sorry for asking a stupid question and in the end it is a ty

2018-03-01 17:40:28 -0500 received badge  Supporter (source)
2018-03-01 17:33:34 -0500 commented question CMake Error in rosmsg tutorial

After changing the xml- and txt-file, what did you do then?

2018-03-01 17:29:00 -0500 commented question CMake Error in rosmsg tutorial

seems not to work...followed you instructions but nothing happens :/ EDIT: no it worked, my browser did't show it prope

2018-03-01 17:28:29 -0500 edited question CMake Error in rosmsg tutorial

CMake Error in rosmsg tutorial I am in the tutorial at CreateMsgAndSrv and got stuck at chapter 3. Running the command

2018-03-01 17:25:24 -0500 commented question CMake Error in rosmsg tutorial

seems not to work...followed you instructions but nothing happens :/

2018-03-01 17:23:49 -0500 edited question CMake Error in rosmsg tutorial

CMake Error in rosmsg tutorial I am in the tutorial at CreateMsgAndSrv and got stuck at chapter 3. Running the command

2018-03-01 17:22:03 -0500 received badge  Popular Question (source)
2018-03-01 17:21:04 -0500 edited question CMake Error in rosmsg tutorial

CMake Error in rosmsg tutorial I am in the tutorial at CreateMsgAndSrv and got stuck at chapter 3. Running the command

2018-03-01 17:21:04 -0500 received badge  Editor (source)
2018-03-01 17:20:10 -0500 edited question CMake Error in rosmsg tutorial

CMake Error in rosmsg tutorial I am in the tutorial at CreateMsgAndSrv and got stuck at chapter 3. Running the command

2018-03-01 17:13:51 -0500 commented question CMake Error in rosmsg tutorial

Oh, sure! Sorry that I didn't think of it before. Is there an easy way to add parapgraphs without getting the text out o

2018-03-01 17:04:28 -0500 commented question CMake Error in rosmsg tutorial

Oh, sure! Sorry that I didn't think of it before.

2018-03-01 16:49:27 -0500 asked a question CMake Error in rosmsg tutorial

CMake Error in rosmsg tutorial I am in the tutorial at CreateMsgAndSrv and got stuck at chapter 3. Running the command

2018-02-23 11:43:08 -0500 commented answer Is there a way to set defaults for package.xml (Maintainer name

Has something happend in this time to this topic? Just want to put the maintainer information in, but the command only t