Re: [ros-users] Nodelet based image pipeline

Top Pagina
Bijlagen:
Bericht als e-mail
+ (text/plain)
Delete this message
Reply to this message
Auteur: User discussions
Datum:  
Aan: User discussions
Onderwerp: Re: [ros-users] Nodelet based image pipeline
On Sun, Dec 5, 2010 at 1:47 AM, Tully Foote <> wrote:

> In the short term adding a nodelet manager into any node is trivial all you
> have to do is instantiate a nodelet::Loader class.
>
> The main for the nodelet manager looks like this:
> {{{
>   if (command == "manager")
>   {
>     ros::init (argc, argv, "manager");
>     nodelet::Loader n;
>     ros::spin();
>   }
> }}}


What are the advantages of doing this instead of writing everything as
a nodelet and using the nodelet package directly to manage them?
--
 joq