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

OwnageManFromLOL's profile - activity

2023-02-09 03:51:11 -0500 received badge  Nice Question (source)
2022-11-08 04:36:20 -0500 received badge  Popular Question (source)
2022-11-08 04:36:20 -0500 received badge  Notable Question (source)
2022-03-16 01:25:02 -0500 received badge  Great Question (source)
2020-10-08 06:00:18 -0500 received badge  Famous Question (source)
2020-09-26 21:00:20 -0500 marked best answer What does "catkin build <pkg_name> --cmake-args -DCMAKE_BUILD_TYPE=Release" actually do?

I recently been exploring using these cmake-args to optimize my code. For the past few weeks I have just been running "catkin build <pkg_name>". Today when I ran "catkin build <pkg_name> --cmake-args -DCMAKE_BUILD_TYPE=Release" my code ran 10 times faster.

Should I always be running the second command instead with the build type explicitly mentioned as opposed to simply "catkin build <pkg_name>"? Is this a safe practice? I could not find much about this on the internet and I would greatly appreciate some advice.

2020-07-03 10:11:00 -0500 received badge  Good Question (source)
2020-06-25 16:11:41 -0500 received badge  Nice Question (source)
2020-06-25 16:11:40 -0500 marked best answer Difference between depth and depth_registered?

When you launch the freenect node there are topics with camera/depth/(SOMETHING) and camera/depth_registered/(SOMETHING). What is the difference between these two things?

2020-03-18 07:41:29 -0500 received badge  Famous Question (source)
2020-02-14 11:58:45 -0500 received badge  Famous Question (source)
2020-01-30 07:18:30 -0500 received badge  Nice Question (source)
2019-12-11 16:41:08 -0500 received badge  Famous Question (source)
2019-11-06 06:29:06 -0500 received badge  Famous Question (source)
2019-09-02 08:51:24 -0500 received badge  Notable Question (source)
2019-08-19 14:57:37 -0500 marked best answer Setting up ROS2 on laptop with ROS1

Hi guys I would like to set up ROS2 on my laptop so that I can contribute to the community. However, I have ROS1 installed on my computer. Will this be an issue? If so, what is a good way to prevent any conflicts between the two systems?

2019-06-21 11:16:34 -0500 received badge  Famous Question (source)
2019-05-05 15:11:38 -0500 received badge  Notable Question (source)
2019-04-22 19:33:20 -0500 commented answer Replacement for rospy.time.now() in ROS2?

Hey tfoote thanks for your help :)

2019-04-22 19:32:44 -0500 marked best answer Replacement for rospy.time.now() in ROS2?

In ROS1 if I wanted to publish an Odometry msg I would use rospy.Time.now() to get the current time and publish the odom msg using that time. However, I haven't been able to find anything similar in ROS2? Does anyone know what functionality I can use to get the time for a msg I am publishing in ROS2?

now = rospy.Time.now()
odom = Odometry()
odom.header.frame_id = self._odom_frame
odom.header.stamp = now
2019-04-22 18:23:13 -0500 received badge  Popular Question (source)
2019-04-21 14:13:11 -0500 asked a question Replacement for rospy.time.now() in ROS2?

Replacement for rospy.time.now() in ROS2? In ROS1 if I wanted to publish an Odometry msg I would use rospy.Time.now() to