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

Connecting plasms in ECTO

asked 2013-03-25 11:02:44 -0500

updated 2014-04-20 14:09:38 -0500

ngrennan gravatar image

I am creating a repository for a new visual processing pipeline which should be able to accommodate several different functionality (data capture, filtering, segmentation, etc) and in each function it should also be able to support several different implementations so that when the system is up and running it can select which implementation may best suit the current process.

I am wondering if I should implement this as each function as a plasm but this brings up the question can I connect multiple plasms in ECTO to make the final pipeline or must everything be connected together in one plasm?

I have gotten my cell structure set up the way that we want it to be I am not just trying to figure out how to best set up the plasms.

Any help would be appreciated.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-03-25 11:24:48 -0500

fergs gravatar image

The standard approach to this is to implement these pieces as an ecto blackbox, and then string the blackbox items together to get a plasm. As far as I know, you can only have 1 plasm. Within the object recognition kitchen (ORK), each of the pipelines is implemented as a blackbox, so those might serve as some additional examples.

edit flag offensive delete link more

Comments

So the idea would be to encapsulate each function and its varying implementations into a black box and then connect all of the black boxes together into one core plasm which would run the whole system?

BadRobot gravatar image BadRobot  ( 2013-03-25 22:54:05 -0500 )edit

Yep. That's the idea. The blackbox is basically just a cell, containing lots of other cells within.

fergs gravatar image fergs  ( 2013-03-26 10:59:12 -0500 )edit

Thank you so much for all your assistance with getting all of this set up and running!

BadRobot gravatar image BadRobot  ( 2013-03-26 11:22:03 -0500 )edit

Question Tools

Stats

Asked: 2013-03-25 11:02:44 -0500

Seen: 423 times

Last updated: Mar 25 '13