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

bigbellmercy's profile - activity

2023-02-11 08:50:09 -0500 received badge  Nice Answer (source)
2022-05-05 09:54:42 -0500 received badge  Necromancer (source)
2022-02-10 14:18:43 -0500 received badge  Famous Question (source)
2021-09-02 21:53:23 -0500 answered a question catkin: move/remove package and workspace

When I removed the source folder of a package, an error happened in catkin build command for the package. So I used the

2021-08-03 02:28:19 -0500 received badge  Notable Question (source)
2021-07-06 19:33:39 -0500 received badge  Necromancer (source)
2021-06-04 08:15:43 -0500 received badge  Nice Answer (source)
2021-04-27 23:08:22 -0500 received badge  Necromancer (source)
2021-03-25 04:16:27 -0500 answered a question ROS + gazebo + PX4 SITL install and configuration

I found a solution for No. 1 in the above: Make px4 folder in ~/catkin_ws/src. Copy launch folder of your px4 project

2021-03-23 04:15:46 -0500 answered a question Installation from source fails because of cv_bridge include dir

In my case in Jetson Nano, the error happened when I ran catkin_make clean for the first time. The actual path for Open

2021-03-16 22:04:20 -0500 edited answer install destination error with my catkin package

For the question 'Where is ${CATKIN_PACKAGE_BIN_DESTINATION}?', in my case, that location exists at '~/catkin_ws/devel/.

2021-03-16 22:03:49 -0500 answered a question install destination error with my catkin package

For the question 'Where is ${CATKIN_PACKAGE_BIN_DESTINATION}?', in my case, that location exist at '~/catkin_ws/devel/.p

2021-02-22 03:03:00 -0500 answered a question nav_msgs/Odometry.h: No such file or directory

In my case, such errors disappeared after I added nav_msgs into the find_package() and generate_messages() in the CMakeF

2020-12-31 16:38:22 -0500 received badge  Necromancer (source)
2020-09-24 23:32:33 -0500 edited answer ros run mavros with permission denied.

In a terminal, execute: sudo usermod -a -G dialout $USER After rebooting, it works.

2020-09-24 23:31:47 -0500 answered a question ros run mavros with permission denied.

sudo usermod -a -G dialout $USER After rebooting, it works.

2020-09-07 10:51:36 -0500 received badge  Popular Question (source)
2020-09-07 00:24:08 -0500 commented answer How to get only time stamp in a big topic in a command line

Wow! Very good mysterious(?) function!

2020-09-06 22:10:32 -0500 asked a question How to get only time stamp in a big topic in a command line

How to get only time stamp in a big topic in a command line Because the size of a topic is quite big (like point cloud),

2020-09-04 02:45:41 -0500 edited answer What are the units and coordinate conventions in ROS?

The reference frame in ROS is FLU, Front(X)-Left(Y)-Up(Z) as explained above. But optical frame uses RDF, Right(X)-Down(

2020-09-04 02:39:39 -0500 edited answer What are the units and coordinate conventions in ROS?

The reference frame in ROS is FLU, Front(X)-Left(Y)-Up(Z) as explained above. But optical frame uses RDF, Right(X)-Down(

2020-09-04 02:38:18 -0500 edited answer What are the units and coordinate conventions in ROS?

The reference frame in ROS is FLU, Front(X)-Left(Y)-Up(Z) as explained above. But optical frame uses RDF, Right(X)-Down(

2020-09-04 02:35:52 -0500 edited answer What are the units and coordinate conventions in ROS?

The reference frame in ROS is FLU, Front(X)-Left(Y)-Up(Z) as explained above. But optical frame uses RDF, Right(X)-Down(

2020-09-04 02:35:52 -0500 received badge  Editor (source)
2020-09-04 02:06:27 -0500 answered a question What are the units and coordinate conventions in ROS?

The reference frame in ROS is FLU, Front(X)-Left(Y)-Up(Z) as explained above. But optical frame uses Right(X)-Down(Y)-Fr

2020-08-28 06:26:26 -0500 answered a question depth_image_proc couldn't find executable

It's very clear answer: You cannot run nodelets using rosrun, they can only be loaded into a nodelet manager.

2020-05-18 21:51:26 -0500 edited answer How to catkin_make one package

This worked to me: catkin_make_isolated --install --pkg YourPackageName

2020-05-10 21:58:55 -0500 commented answer rewriting python program in cpp, how to fill in the header field in msg

In the above, instead of 'frame' you can fill a string constant as like below: srv.header.frame_id = "your_frame";

2020-04-20 23:56:22 -0500 answered a question Change image_saver save location

In my case, the path was ~/.ros/

2020-04-20 20:50:55 -0500 answered a question How to catkin_make one package

This worked to me: catkin_make_isolated --install --only-pkg-with-deps YourPackageName

2019-09-30 13:27:58 -0500 received badge  Enthusiast
2019-09-25 16:27:55 -0500 commented question camera calibration file head_camera.yaml not found

In my case, the camera image is displayed well although such two warnings happened as above.

2019-09-25 16:21:58 -0500 commented answer Rebuilding single package with catkin

Thanks, it works as you told! catkin_make --pkg <YOUR_PACKAGE> --force-cmake

2019-09-25 14:19:31 -0500 answered a question Rebuilding single package with catkin

Yes it rebuild only the package but it does not rebuild actually because any change has not been done. How can I rebuild

2019-09-25 13:11:39 -0500 received badge  Supporter (source)
2019-02-28 06:13:38 -0500 received badge  Necromancer (source)
2019-02-28 06:13:38 -0500 received badge  Teacher (source)
2019-02-27 13:33:26 -0500 answered a question rostopic pub - {stamp:now} vs --rate

In the link 'ros_comm#55' of the post of Martin, there is the solution. Add -s option in the rostopic pub command line.