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

Tex's profile - activity

2020-01-25 17:53:58 -0500 received badge  Famous Question (source)
2019-08-14 09:51:59 -0500 received badge  Famous Question (source)
2019-03-10 01:17:24 -0500 received badge  Famous Question (source)
2019-01-31 09:15:57 -0500 received badge  Notable Question (source)
2019-01-30 14:29:08 -0500 received badge  Popular Question (source)
2019-01-30 12:46:55 -0500 edited question How to pass mutable input and output keys in SMACH

How to pass mutable input and output keys in SMACH Hello, I am currently using the melodic distro. Here are my ROS env

2019-01-30 12:46:55 -0500 received badge  Editor (source)
2019-01-30 12:46:40 -0500 commented question How to pass mutable input and output keys in SMACH

Sorry, mutably*

2019-01-30 10:16:42 -0500 edited question How to pass mutable input and output keys in SMACH

How to pass mutable input and output keys in SMACH Hello, I am currently using the melodic distro. Here are my ROS env

2019-01-30 10:15:57 -0500 asked a question How to pass mutable input and output keys in SMACH

How to pass mutable input and output keys in SMACH Hello, I am currently using the melodic distro. Here are my ROS env

2018-08-08 01:32:57 -0500 marked best answer Track human orientation?

Hello,

My question is quite simple. I want to know if there is a ROS package out there that is compatible with ROS Indigo on Ubuntu 14.04 that (preferably) uses point-cloud to detect "human orientation", i.e whether a human is sitting, standing, etc.

Thank you

2017-10-24 09:29:46 -0500 received badge  Notable Question (source)
2017-08-29 04:29:26 -0500 received badge  Notable Question (source)
2017-05-29 12:02:03 -0500 received badge  Popular Question (source)
2017-05-28 21:28:31 -0500 asked a question Track human orientation?

Track human orientation? Hello, My question is quite simple. I want to know if there is a ROS package out there that is

2017-05-18 11:41:25 -0500 commented answer .msg Module not being found

Yeah, that's it. officially the largest idiot.

2017-05-18 11:41:03 -0500 marked best answer .msg Module not being found

I am running ROS Indigo on Ubuntu 14.04. Here is my package and cmake file:

CMAKELIST:

cmake_minimum_required(VERSION 2.8.3)
project(semantic_label_publisher)

## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
  rospy
  std_msgs
  message_generation
)


## Generate messages in the 'msg' folder
 add_message_files(
   FILES
   SemLabel.msg
#   Message2.msg
 )

## Generate services in the 'srv' folder
# add_service_files(
#   FILES
#   Service1.srv
#   Service2.srv
# )

## Generate actions in the 'action' folder
# add_action_files(
#   FILES
#   Action1.action
#   Action2.action
# )

## Generate added messages and services with any dependencies listed here
 generate_messages(
   DEPENDENCIES
   std_msgs  # Or other packages containing msgs
 )

###################################
## catkin specific configuration ##
###################################
## The catkin_package macro generates cmake config files for your package
## Declare things to be passed to dependent projects
## INCLUDE_DIRS: uncomment this if you package contains header files
## LIBRARIES: libraries you create in this project that dependent projects also need
## CATKIN_DEPENDS: catkin_packages dependent projects also need
## DEPENDS: system dependencies of this project that dependent projects also need
catkin_package(
#  INCLUDE_DIRS include
#  LIBRARIES semantic_label_publisher
  CATKIN_DEPENDS rospy std_msgs
#  DEPENDS system_lib
)

###########
## Build ##
###########

## Specify additional locations of header files
## Your package locations should be listed before other locations
# include_directories(include)
include_directories(
  ${catkin_INCLUDE_DIRS}
)

package.xml File:

<?xml version="1.0"?>
<package>
  <name>semantic_label_publisher</name>
  <version>0.0.0</version>
  <description>The semantic_label_publisher package</description>


  <maintainer email="xxx@todo.todo">xxx</maintainer>


  <!-- One license tag required, multiple allowed, one license per tag -->
  <!-- Commonly used license strings: -->
  <!--   BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 -->
  <license>TODO</license>



  <buildtool_depend>catkin</buildtool_depend>
  <build_depend>rospy</build_depend>
  <build_depend>std_msgs</build_depend>
  <build_depend>message_generation</build_depend>
  <run_depend>message_runtime</run_depend>
  <run_depend>rospy</run_depend>
  <run_depend>std_msgs</run_depend>


  <!-- The export tag contains other, unspecified, tags -->
  <export>
    <!-- You can specify that this package is a metapackage here: -->
    <!-- <metapackage/> -->

    <!-- Other tools can request additional information be placed here -->



  </export>
</package>

I built my package, did everything, but when I run

rosrun semantic_label_publisher semantic_label_publisher_node.py

I get the following error:

ImportError: No module named semantic_label_publish.msg

Is there something I am doing wrong? If you need anymore info let me know.

Thanks

2017-05-18 11:41:03 -0500 received badge  Scholar (source)
2017-05-18 11:40:57 -0500 received badge  Supporter (source)
2017-05-18 11:40:48 -0500 commented question .msg Module not being found

@spooner-dev I can't believe this! You're damn right, I am supposed to run semantic_label_publisher. I am an idiot. Th

2017-05-18 06:58:36 -0500 received badge  Popular Question (source)
2017-05-17 18:47:48 -0500 asked a question .msg Module not being found

.msg Module not being found I am running ROS Indigo on Ubuntu 14.04. Here is my package and cmake file: CMAKELIST: cma