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

Morefoam's profile - activity

2023-01-10 16:09:33 -0500 received badge  Famous Question (source)
2021-05-10 08:44:25 -0500 received badge  Nice Question (source)
2020-06-16 22:15:51 -0500 received badge  Famous Question (source)
2020-06-16 22:15:51 -0500 received badge  Notable Question (source)
2020-04-06 20:08:03 -0500 marked best answer Is a catkin package a node?

Hello I am very new to ROS. I did most of the tutorials but have some questions still. This question: Is a catkin package a node?

More in-depth: So I have my catkin workspace and within that workspace I can have multiple packages. Is each package supposed to be a node? or are there multiple nodes within one package? I guess I'm asking what is the standard layout of the catkin workspace? Sorry for such a primitive question and thanks for the help! :)

2019-03-25 13:14:17 -0500 received badge  Famous Question (source)
2019-03-25 13:14:17 -0500 received badge  Notable Question (source)
2017-11-03 10:44:57 -0500 received badge  Student (source)
2017-08-14 02:06:00 -0500 marked best answer Getting point cloud from turtlebot?

Hello, I am using the turtlebot simulator in gazebo and I want to get its pointcloud data and send it in real time to a mapping program (gmapping maybe?). Where can I find the pointcloud data?

2017-08-14 02:05:54 -0500 marked best answer How do I create and map pointcloud data?

Hello, I'm new to ROS (did the basic/intermediate tutorials) and want to try and map pointcloud data.

My question: How do I generate pointcloud data (preferably without an actual camera/robot - a simulation) and map it (using rviz?)?

My thought process on the steps to do so (this is what I think I need to do - could be wrong):

1.) Create catkin workspace

2.) Create 3 nodes in my package (point cloud generating node, mapping node, display node)

3.) Send pcl data (Once generated) to mapping node (and map it somehow), then mapping data to display node (and display it somehow)

If you know of any good tutorials on how to do this, please link them. Or give me your own tips/guide.

Additional info:

Thanks for the help in advance!

2017-08-14 02:05:34 -0500 received badge  Popular Question (source)
2017-07-17 05:51:38 -0500 received badge  Famous Question (source)
2017-03-23 21:36:16 -0500 received badge  Famous Question (source)
2016-11-08 07:13:44 -0500 received badge  Famous Question (source)
2016-10-17 03:33:26 -0500 received badge  Famous Question (source)
2016-10-09 01:53:25 -0500 received badge  Notable Question (source)
2016-08-22 16:08:28 -0500 received badge  Notable Question (source)
2016-08-10 18:41:09 -0500 received badge  Popular Question (source)
2016-07-11 02:37:58 -0500 received badge  Notable Question (source)
2016-07-10 17:10:55 -0500 received badge  Notable Question (source)
2016-07-09 14:17:13 -0500 received badge  Popular Question (source)
2016-07-09 10:37:00 -0500 received badge  Popular Question (source)
2016-07-09 04:20:31 -0500 received badge  Popular Question (source)
2016-07-08 19:53:13 -0500 asked a question What is the "general robotics feedback loop"?

I'm not sure if this is directly related to ROS, but I heard the term "general robotics feedback loop" and I tried to do some googling to figure out what exactly this is, but to no avail. Could someone explain to me what this is?

Here are the links I was looking at, but I'm not sure if I'm looking at the right stuff:

https://www.clear.rice.edu/elec201/Book/control.html#SECTION001712000000000000000

http://www.cs.cmu.edu/~./ModProb/MRsol1.html

2016-07-08 19:25:55 -0500 asked a question How does gMapping work?

New to ROS. Can someone give me a VERY simple explanation of gmapping and its algorithm (how it works)? Just trying to get an extremely basic grasp of how it works.

Here are some links I looked at to try and understand it more:

http://www.openslam.org/gmapping.html

http://people.eecs.berkeley.edu/~pabbeel/cs287-fa11/slides/gmapping.pdf

2016-07-08 18:44:04 -0500 commented answer launch other launch files and ROS nodes

I figured it out. Thanks for the help. I have another question, though. Is there a way to make the bag file save to a specified folder? How do I change "<node pkg="rosbag" type="record" name="recorder" output="screen" args="-a"/>" to make it save to a specified location?

2016-07-08 17:36:15 -0500 commented answer Do I have to go into my catkin workspace and source devel/setup.bash every time before I can use my launch file?

Thanks for the help! How do you go about setting up aliases? I'm pretty new to ROS/Ubuntu, so not sure if I'll be working on multiple workspaces at once any time soon, but it would be nice to know for the future. :)

2016-07-08 16:34:50 -0500 asked a question Do I have to go into my catkin workspace and source devel/setup.bash every time before I can use my launch file?

Hello, I would like to be able to open a terminal and type roslaunch <filename>.launch OR roslaunch <packagename> <filename>.launch and have it launch. Currently I have to cd into my catkin workspace and do "source devel/setup.bash" EVERY time I open a new terminal. How can I make it launch without having to do this every time? Thanks in advance for the help.

2016-07-08 16:15:06 -0500 marked best answer launch other launch files and ROS nodes

Hello, I am new to ROS and the launch file syntax is scary. I want to launch all of these together:

-roslaunch turtlebot_gazebo turtlebot_world.launch

-roslaunch turtlebot_gazebo gmapping_demo.launch

-roslaunch turtlebot_rviz_launchers view_robot.launch

-roslaunch turtlebot_teleop keyboard_t...

-rosbag record -a

My question is: Can a launch file do this? or how would i go about making this executable by typing in "roslaunch <filename>.launch" into a terminal?