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

Suri's profile - activity

2022-03-04 06:29:00 -0500 received badge  Notable Question (source)
2022-03-04 06:29:00 -0500 received badge  Popular Question (source)
2022-02-01 04:27:35 -0500 received badge  Famous Question (source)
2022-02-01 04:27:35 -0500 received badge  Notable Question (source)
2022-02-01 04:27:35 -0500 received badge  Popular Question (source)
2021-08-07 00:25:28 -0500 received badge  Famous Question (source)
2021-04-30 08:29:32 -0500 received badge  Famous Question (source)
2021-04-12 09:32:52 -0500 received badge  Notable Question (source)
2021-02-08 07:40:41 -0500 received badge  Popular Question (source)
2021-01-25 11:51:35 -0500 commented question How to transform the rotation around Z axis in Lidar to Y axis in Camera frame?

@seandburke99 will try

2021-01-24 05:35:36 -0500 edited question How to transform the rotation around Z axis in Lidar to Y axis in Camera frame?

How to transform the rotation around Z axis in Lidar to Y axis in Camera frame? Hey all, I need to label the lidar poin

2021-01-24 05:35:09 -0500 edited question How to transform the rotation around Z axis in Lidar to Y axis in Camera frame?

How to transform the rotation around Z axis in Lidar to Y axis in Camera frame? Hey all, I need to label the lidar poin

2021-01-24 05:34:33 -0500 asked a question How to transform the rotation around Z axis in Lidar to Y axis in Camera frame?

How to transform the rotation around Z axis in Lidar to Y axis in Camera frame? Hey all, I need to label the lidar poin

2020-12-31 02:41:49 -0500 answered a question Display octree orientation and octree density(number of points in a voxel)

Hey, You can have a look into this link: https://stackoverflow.com/questions/57916947/understanding-the-voxel-grid-imp

2020-11-28 13:15:11 -0500 received badge  Notable Question (source)
2020-10-07 10:57:08 -0500 received badge  Famous Question (source)
2020-10-07 10:57:08 -0500 received badge  Notable Question (source)
2020-07-09 02:04:34 -0500 received badge  Supporter (source)
2020-07-05 02:58:50 -0500 asked a question How to not publish first point clouds data set to avoid field warning in rviz?

How to not publish first point clouds data set to avoid field warning in rviz? Hey all, I am getting warning while visu

2020-06-18 01:37:09 -0500 edited question How to set the catkin workspace configuration to have both release and debug build?

How to set the catkin workspace configuration to have both release and debug build? Hey All, I need to have both releas

2020-06-18 01:36:21 -0500 asked a question How to set the catkin workspace configuration to have both release and debug build?

How to set the catkin workspace configuration to have both release and debug build? Hey All, I need to have both releas

2020-05-14 02:17:44 -0500 commented question Problem during the installation of cartographer in rosdep

Any solution for this problem?

2020-04-20 07:15:15 -0500 asked a question How to add polygon through ros node?

How to add polygon through ros node? Hey all, I need to add a polygon, I mean as the mobile robot moves, it's moving pa

2020-04-19 02:38:55 -0500 edited question How to control joints through ros node?

How to control joints through ros node? Hey, I need to control the joint, I mean upon the service request joint/motor ha

2020-04-19 02:38:55 -0500 received badge  Editor (source)
2020-04-19 02:38:35 -0500 asked a question How to control joints through ros node?

How to control joints through ros node? Hey, I need to control the joint, I mean upon the service request joint/motor ha

2020-04-19 01:47:53 -0500 received badge  Enthusiast
2020-04-17 11:13:38 -0500 received badge  Popular Question (source)
2020-04-16 06:02:19 -0500 edited question How to initialize a node without passing positional keyword arguments inside the member function of a class?

How to initialize a node without passing positional keyword arguments inside the member function of a class? Hey all, I

2020-04-16 06:01:20 -0500 asked a question How to initialize a node without passing positional keyword arguments inside the member function of a class?

How to initialize a node without passing positional keyword arguments inside the member function of a class? Hey all, I

2020-04-16 04:39:04 -0500 marked best answer How to implement service using oops concept?

Hey all,

I need to implement a service. I can do it using two separate functions or classes each for service server and client server. But my idea is to implement both service server and service client in the same class like below or using interface design pattern.

Class Dummy 
{

private: 
ros::ServiceClient client;
ros::ServiceServer server;
//constructor
Dummy(ros::NodeHandle &nh) : m_nh(nh) {

//advertising the service

}

bool ServiceCallBack(){};

};

And then

Class instantiation in other class constructor.

Now the problem is, How to initialize both server node and client node by instantiate just one class?. Any idea to do using my concept or using interface concept. your idea is also most welcomed including any documentation about advanced ros.

Thanks in advance

2020-04-16 04:39:04 -0500 received badge  Scholar (source)
2020-04-08 01:22:56 -0500 commented question How to implement service using oops concept?

@Weasfas, thank you so much for the good explanation. I will try it in my own way, if it fits, i will come back for disc

2020-04-07 23:05:51 -0500 received badge  Popular Question (source)
2020-04-07 13:38:15 -0500 received badge  Popular Question (source)
2020-04-07 09:12:41 -0500 asked a question How to implement service using oops concept?

How to implement service using oops concept? Hey all, I need to implement a service. I can do it using two separate fun

2020-04-07 03:58:24 -0500 asked a question How to initialize another node inside the member of a class?

How to initialize another node inside the member of a class? Hey all, I am new to ros. I have a class called plugin node