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

JeyP4's profile - activity

2023-08-06 12:28:36 -0500 received badge  Notable Question (source)
2023-07-30 11:09:32 -0500 commented answer Double network bandwidth consumption than rostopic bw! ROS1 with VPN

@Mike Scheutzow. The problem is that it is consuming double 4G bandwidth. My doubt is VPN encryption overhead, but I

2023-07-30 11:07:32 -0500 commented answer Double network bandwidth consumption than rostopic bw! ROS1 with VPN

@Mike Scheutzow. The problem is that it is consuming double 4G bandwidth.

2023-07-30 11:06:07 -0500 commented answer Double network bandwidth consumption than rostopic bw! ROS1 with VPN

@Mike Scheutzow. The problem is that it is consuming double 4G bandwidth.

2023-07-30 11:05:19 -0500 commented answer Double network bandwidth consumption than rostopic bw! ROS1 with VPN

@Mike Scheutzow. The problem is that it is consuming double 4G bandwidth.

2023-07-30 03:33:32 -0500 received badge  Popular Question (source)
2023-07-29 17:25:47 -0500 commented question Double network bandwidth consumption than rostopic bw! ROS1 with VPN

Thanks @Mike Scheutzow. I made an important observation and performed a major edit in the issue. Double bandwidth consum

2023-07-29 17:23:28 -0500 edited question Double network bandwidth consumption than rostopic bw! ROS1 with VPN

Double network bandwidth consumption than rostopic bw! ROS1 Hi I see expected network bandwidth consumption on physical

2023-07-29 17:23:15 -0500 edited question Double network bandwidth consumption than rostopic bw! ROS1 with VPN

Double network bandwidth consumption than rostopic bw! ROS1 Hi I see expected network bandwidth consumption on physical

2023-07-29 12:11:33 -0500 edited question Double network bandwidth consumption than rostopic bw! ROS1 with VPN

Double network bandwidth consumption than rostopic bw! ROS1 Hi Ros Noetic Double network bandwidth consumption than 'r

2023-07-29 12:10:42 -0500 edited question Double network bandwidth consumption than rostopic bw! ROS1 with VPN

Double network bandwidth consumption than rostopic bw! ROS1 Hi Ros Noetic Double network bandwidth consumption than 'r

2023-07-29 08:11:50 -0500 edited question Double network bandwidth consumption than rostopic bw! ROS1 with VPN

Double network bandwidth consumption than rostopic bw! Hi Ros Noetic I see the exact same double bandwidth consumption

2023-07-29 07:27:10 -0500 edited question Double network bandwidth consumption than rostopic bw! ROS1 with VPN

Double network bandwidth consumption than rostopic bw! Hi Ros Noetic I see the exact same double bandwidth consumption

2023-07-29 06:46:21 -0500 commented answer ROS2 topic bandwidth seem doubled on netstat apps

Thanks @Mike Scheutzow. I opened a new topic Double network bandwidth consumption than rostopic bw!

2023-07-29 06:41:50 -0500 asked a question Double network bandwidth consumption than rostopic bw! ROS1 with VPN

Double network bandwidth consumption than rostopic bw! Hi Ros Noetic I see the exact same double bandwidth consumption

2023-07-28 12:06:35 -0500 commented answer ROS2 topic bandwidth seem doubled on netstat apps

I don't have any idea about the discovery server. I see the exact same double bandwidth consumption issue in ROS1 noeti

2023-07-28 12:06:22 -0500 commented answer ROS2 topic bandwidth seem doubled on netstat apps

I don't have any idea about the discovery server. I see the exact same double bandwidth consumption issue in ROS1 noeti

2023-07-28 12:02:44 -0500 commented answer ROS2 topic bandwidth seem doubled on netstat apps

I don't have any idea about the discovery server. I see the exact same double bandwidth consumption issue in ROS1 noeti

2022-10-12 04:43:44 -0500 marked best answer Executing two callbacks of two subscribers parallelly. How?

If one sub1.callback is on execution and meanwhile msg arrives on other sub2. I want to process sub2.callback parallely. Is it possible? How?

ros::Subscriber image_sub= nh.subscribe("/rgb, 2, &class::imCallback, &class);
ros::Subscriber depth_sub= nh.subscribe("/depth", 2, &class::depthCallback, &class);

I read many posts on callback queues, MultiThreadedSpinner, boost. I am confused which way is good for my application !!

image description

2022-08-28 18:59:03 -0500 received badge  Associate Editor (source)
2022-08-28 18:59:03 -0500 edited answer How to publish messages on a topic of type rosgraph_msgs/Clock?

rostopic pub -s -r 1 /clock rosgraph_msgs/Clock '{clock: now}'

2022-08-28 18:58:49 -0500 edited answer How to publish messages on a topic of type rosgraph_msgs/Clock?

rostopic pub -s -r 1 /clock rosgraph_msgs/Clock '{clock: now}'

2022-08-28 18:58:25 -0500 answered a question How to publish messages on a topic of type rosgraph_msgs/Clock?

rostopic pub -s -r 1 /clock rosgraph_msgs/Clock '{clock: now}'

2022-05-02 08:47:27 -0500 received badge  Famous Question (source)
2021-12-09 18:36:53 -0500 received badge  Famous Question (source)
2021-06-16 07:40:16 -0500 received badge  Famous Question (source)
2021-04-01 01:58:35 -0500 received badge  Famous Question (source)
2021-04-01 01:58:35 -0500 received badge  Notable Question (source)
2021-02-23 15:24:27 -0500 received badge  Famous Question (source)
2020-12-18 13:24:45 -0500 marked best answer How to initialize a subscriber only when a 'if' condition meets?

Hello. I want to initialize a subscriber only when

if(i>0){              // 'i' is received as node argument
  ros::Subscriber sub = nh.subscribe("/image_rect_color/compressed", 1, imageCallback);
  }

Problem I am facing is: main thread comes into if-scope but couldn't initialize the subscriber. I guess problem is introduction of new scope.

BTW:This code is in main().

How can this problem be solved?

Thanks

2020-12-18 13:24:08 -0500 marked best answer Difference between image_transport::Subscriber AND ros::Subscriber?

What is the Difference between image_transport::Subscriber AND ros::Subscriber?.

Which is more efficient?

2020-12-08 04:15:53 -0500 received badge  Famous Question (source)
2020-08-24 05:25:04 -0500 received badge  Notable Question (source)
2020-08-22 22:18:05 -0500 received badge  Notable Question (source)
2020-08-22 22:18:05 -0500 received badge  Popular Question (source)
2020-07-11 06:22:05 -0500 edited question Undefined reference to boost after source compilation of vision_opencv !!

Undefined reference to boost after source compilation of vision_opencv !! Hello My aim is to link image-transport-plug

2020-07-11 06:17:11 -0500 edited question Undefined reference to boost after source compilation of vision_opencv !!

Undefined reference to boost after source compilation of vision_opencv !! Hello My aim is to link image-transport-plug

2020-07-10 16:47:48 -0500 edited question Undefined reference to boost after source compilation of vision_opencv !!

Undefined reference to boost after source compilation of vision_opencv !! Hello My aim is to link image-transport-plug

2020-07-10 16:13:25 -0500 received badge  Notable Question (source)
2020-07-10 16:12:43 -0500 received badge  Organizer (source)
2020-07-10 16:11:51 -0500 asked a question Undefined reference to boost after source compilation of vision_opencv !!

Undefined reference to boost after source compilation of vision_opencv !! Hello My aim is to link image-transport-plug

2020-07-08 08:01:12 -0500 received badge  Famous Question (source)
2020-07-08 08:00:42 -0500 received badge  Notable Question (source)
2020-07-08 07:54:21 -0500 asked a question How to force compressed_image_transport to use libturbojpeg?

How to force compressed_image_transport to use libturbojpeg? Hello In my Jetson Xavier, a see 'libjpegturbo' library is

2020-06-27 11:59:34 -0500 marked best answer Compressed image transport plugin uses which jpeg encoding library?

Hello Some time ago, I remember /compressedimage topic was consuming 700KB/s bandwidth for 640*480 image @ 30 fps at 80% quality.

After that, I think I started learning gstreamer and I re-install libjpeg-dev or libjpeg-turbo8 or something I did.

Now when I resume working on /compressedimage topic, I am realizing that it is consuming 1.2MB/s bandwidth for same 640*480 @ 30fps at 80% quality.

Which jpeg library does compressed image transport plugin use?

I am wishing to have lowest bandwidth possible for 80% jpeg quality.

2020-05-27 14:05:03 -0500 received badge  Famous Question (source)
2020-04-01 18:07:18 -0500 received badge  Popular Question (source)
2020-03-30 23:30:07 -0500 received badge  Popular Question (source)
2020-03-22 08:12:29 -0500 received badge  Famous Question (source)
2020-02-11 14:18:54 -0500 asked a question How can I publish I420 image data as sensor_msgs/Image? (Image transport plugin)

How can I publish I420 image data as sensor_msgs/Image? (Image transport plugin) From gstreamer v4l2src plugin, I get gs