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

Nodelets creation

asked 2012-04-08 15:27:26 -0500

Alekzander gravatar image

Hello, im tryng to implement nodelets with pcl, can someone help me with a basic example on how to create a nodelet?, i already read about the pluginlib and the nodelet from the wiki ros page, still i have not been able to create a nodelet. Please i would really apreciate some help.

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
1

answered 2012-04-08 17:28:32 -0500

joq gravatar image

I wrote one recently. A separate Convert class does the work, and a minimal node and nodelet instantiate it. For several reasons, I find it convenient to have both.

edit flag offensive delete link more

Comments

Thanks a lot that's very illustrative, just one more question, the onInit method is kind of the same as: int main()?

Alekzander gravatar image Alekzander  ( 2012-04-08 17:54:48 -0500 )edit
1

It is not like main. It should return quickly. It will be called when the nodelet has been created to allow you to setup operations.

tfoote gravatar image tfoote  ( 2012-04-09 16:22:20 -0500 )edit

@tfoote makes an important point. Don't think of onInit() as main(), it's really just the constructor, which should return immediately.

joq gravatar image joq  ( 2012-04-09 16:26:55 -0500 )edit
0

answered 2012-04-08 17:54:04 -0500

Alekzander gravatar image

Thanks a lot that's very illustrative, just one more question, the onInit method is kind of the same as: int main()?

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2012-04-08 15:27:26 -0500

Seen: 613 times

Last updated: Apr 08 '12