Difference between revisions of "Software Users Guide"

From David Vernon's Wiki
Jump to: navigation, search
(Created page with "This guide explains how to use YARP and YARP tools to manage and run a plications comprising a collection of components. == Setting up your machine: Running YARP == Once you...")
 
Line 1: Line 1:
This guide explains how to use YARP and YARP tools to manage and run a plications comprising a collection of components.
+
This guide explains how to use YARP and YARP tools to manage and run DREAM robot applications comprising a collection of components.
  
 
== Setting up your machine: Running YARP ==
 
== Setting up your machine: Running YARP ==

Revision as of 02:50, 30 August 2014

This guide explains how to use YARP and YARP tools to manage and run DREAM robot applications comprising a collection of components.

Setting up your machine: Running YARP

Once you have installed the DREAM software development environment you are (almost) ready to run the DREAM applications.

Before you do, you have to launch a YARP server and a YARP run server.

From the Windows 7 toolbar, launch a Command Prompt terminal and do the following.

yarp server

Now, launch another Command Prompt terminal and do this.

yarp run --server /dream1

This creates a run server named /dream1 and is used by YARP to find out where to execute the components in the application.

Using gyarpmanger to manage DREAM applications

DREAM software is just as set of interconnected components and DREAM software applications are defined by identifying the components to be used, the computers (nodes) on which they are to be run, and the connections between the various components. All this is done with a .xml application file, normally stored in the app directory.


YARP provides a GUI tool to help you run these application. This is called gyarpmanager. It is a powerful tool and you can read more about it here. For the present, just note that gyarpmanager can read a .ini configuration file to find out where the applications are (among other things).


There is a default ymanager.ini file in the root of the DREAM directory and it simply tells gyarpmanager to look for all application .xml files under the release directory.

So, to finally get started, launch another (i.e. a third) Command Prompt terminal, change directory to the DREAM root directory and enter gyarpmanager

C:/DREAM>gyarpmanager

Once this tool has been launched, you need to open the applications you want to run. Do this by opening on the Applications folder on the left-hand side and double-clicking on the applications you are interested in. You will see two with the original release of the DREAM repository

  • Demo_of_protoComponent
  • File-base_image_source_streaming_to_port

First run the File-base_image_source_streaming_to_port application by clicking the Run button and then clicking the Connect button. This application simulates the production of a stream of images from a camera to a port.

Now run the on the Demo_of_protoComponent. It will take these images and do some simple image processing (binary thresholding).

Click Stop to stop them.