Parameter Selection using Evolutionary Strategies in ImageJ
|
|
|
- Gerard Garrett
- 10 years ago
- Views:
Transcription
1 Parameter Selection using Evolutionary Strategies in ImageJ Roland Bärtschi Advisor: Janick Cardinale, Prof. Dr. Ivo Sbalzarini Abstract ImageJ is an open source image processing tool written in Java which is extendible through macros as well as through plug-ins. There exists a large collection of both kinds of extensions for various tasks such as image segmentation. Plug-ins often have various arguments and complex macros a lot of parameters. These need usually be selected by hand which is a task that often depends on prior knowledge for what values produce the expected results. In the absence of this knowledge the parameters are usually found by trying a few values until the results approximately match the expectations. The Plug-in developed in this thesis aims at automating this process with an intuitive user interface using Evolution Strategies such that the work on the user side mostly consists of ranking a few results in comparison to one another until a satisfying result has been reached. Contents 1 Introduction 2 2 ImageJ ImageJ 1.4x and Fiji Core classes of ImageJ Plug-ins Macros Fiji is just ImageJ ImageJ Evolution Strategies 3 4 The Parameter Optimization Plug-in View The Selection UI The Ranking UI Controller Model Parameterized Macro Evolution Strategies Future Work 8 Appendix A. User Manual 9 References 14 1
2 1 Introduction Images of all sorts have become an important data source for various elds of academia as well as for industrial applications. With the ever increasing amount of images which are being produced the task of processing them becomes more and more important. ImageJ is an open source image processing tool which is written in Java and is therefore very portable. ImageJ oers the essential image processing tools as its basic features and allows for extensions through plug-ins as well as through macros. Macros can even be produced by recording the users interaction with ImageJ which makes it rather easy to automate complex processing steps. Typical image processing tasks such as image segmentation often involve many parameters which have to be chosen by hand. In some cases one might have prior knowledge about what might be good values for a specic parameter and in other cases one has to try one value after an other in order to nd one which is suitable for the purpose of the task at hand. The aim of this thesis is to create a Plug-in for ImageJ which automates this process in such a way that it guides the user through an optimization procedure where they are only required to select the parameters which need to be optimized and to rank results based on their mutual quality. The idea is to use Evolution Strategies such that the resulting images become better in each iteration based on the user's ranking until they are satised with one of the results and choose to apply the selected parameter values on the original image. 2 ImageJ 2.1 ImageJ 1.4x and Fiji ImageJ is an open source image processing toolkit which is implemented in Java. It supports many le formats such as PNG, JPEG, BMP, GIF etc. and images in the following data formats: 8-bit grayscale, 8-bit indexed color, 16-bit unsigned integer, 32-bit oating-point and 32-bit RGB color. It is extendibe through macros and plug-ins. Macros can be used for automation of processing steps or complex processing pipelines. It is possible to record the actions performed by the user on ImageJ in the form of a macro. Macros can be edited, saved and run at any time. Plug-ins are an even more powerfull extension because they can contain arbitrary Java code which can interact with ImageJ through a specied interface. There are plug-ins available for download on various websites and ImageJ even contains a text editor and java compiler for writing plug-ins. ImageJ can be used as an application or as a toolkit. ImageJ is one of the fastest Java image processing tools available. Basic editing and processing features are already implemented as tools. There are for example various selection tools for rectangular, elliptical etc. shapes which can be combined and make it possible to apply other tools and operations just to the selected area Core classes of ImageJ As a rst step towards this thesis the current implementation of ImageJ has been analyzed in order to make use of the existing code as much as possible. Unfortunately it turned out to be much more dicult to do so than expected because of the architecture and the specic implementation of the core classes of ImageJ. Many methods and elds in the core classes have default visibility which makes them visible to other classes within the same package which unfortunately is of no use when developing a plug-in which is being loaded by a dierent class loader which makes it impossible to access any of those elds or methods no matter what package the accessing class is in. Lets never the less take a look at some of the core classes of ImageJ which matter for the implementation of this plug-in. IJ This class is the core or ImageJ and all its elds and methods are static. It contains a lot of utility methods which are used by other classes and is the center of interaction with ImageJ. ImagePlus The ImagePlus class is basically a wrapper for the image. It can either contain a single image or a whole stack of images. Besides the image/stack data it also contains some meta data on the image such as width and height. It also contains the ImageProcessor which is used to manipulate the image and for images which are more than 2 dimensional it contains an ImageStack which basically consists of an array of images. ImageStack An ImageStack is an expandable array of slices which are arrays of pixels. The pixels of the current slice can then be used to create a new ImageProcessor. Slices can be added or removed and some meta data can be retrieved and set using methods of this class. ImageProcessor ImageProcessor is used to operate on images and is the basic container holding the pixels of an image. Image- Processor is an abstract class which is extended by the classes ByteProcessor, ColorProcessor, FloatProcessor and ShortProcessor which implement the basic data manipulation operations based on the type of the pixels. ImageWindow This class extends the AWT Frame class and is the basic window which is used to display images in ImageJ. It contains an instance of ImageCanvas which is where the image is actually painted on the UI. 2
3 ImageCanvas This is an extension of the AWT Canvas class which is used to draw an image in ImageJ. It is associated with an instance of ImagePlus from which it retrieves the AWT Image which it draws. This class implements mouse and keyboard listener interfaces which are being used for interacting with the image. Based on the tool which is selected in the tool bar of the main window of ImageJ a click or turn of the mouse wheel can have dierent eects on how the image is being displayed. It is also creating the region of interest selections on the ImagePlus instance that is being displayed. These core classes are strongly interlinked and it is dicult to extend one without having to extend others due that strong dependency and the visibility of some elds and methods. One more class is worth being mentioned here and that is WindowManager. This class is as its name suggests a manager for the windows in ImageJ but it has also a role in ImageJ which is important for the processing of the images in the plug-in developed in this thesis. ImageJ uses the WindowManager to determine on which image a macro is going to be run. This is usually the image contained in the instance of ImageWindow which was last in focus but it can also temporarily be set to a dierent ImagePlus instance with a call to settempcurrentimage. This is important because it makes it possible to run a macro on an image which is not displayed in an instance of ImageWindow as it will be the case in the plug-in Plug-ins Plug-ins in ImageJ can be anything from an analysis tool to an image generator and it need not even have to do anything with ImageJ. All that's required for a plug-in to be used in ImageJ is that its main class implements the PlugIn interface or if the plug-in is supposed to manipulate the currently focused image then it can also implement the PlugInFilter interface. Just one more detail needs to be taken into account and that is that the name needs to contain an underscore in order for ImageJ to recognize it as a plug-in. But besides that it can contain arbitrary libraries and can have a user interface implemented using a framework other than AWT or Swing Macros As mentioned in the introduction ImageJ also oers the possibility to automate processes with macros which can even be recorded from actions performed in ImageJ. This makes automation quite easy but macros can also be written by hand. Macros have a Java like syntax and can basically run all features which are also available in the user interface. 1 Ocial website: 2 See roadmap of the development project on Fiji is just ImageJ As the maintainers of Fiji put it: Fiji is an image processing package. It can be described as a distribution of ImageJ together with Java, Java 3D and a lot of plug-ins organized into a coherent menu structure. Fiji compares to ImageJ as Ubuntu compares to Linux. 1 As stated in this quote Fiji is based on ImageJ and extends it with useful features such as an updating mechanism and a large collection of plug-ins. Fiji also introduced ImgLib which will be used for image representation in ImageJ2. The plug-in accordingly works both in a basic build of ImageJ as well as in Fiji. 2.2 ImageJ 2.0 The release of the next major version of ImageJ is due in October 2 and a rst beta version should be released in June. ImageJ 2.0 is being redesigned from ground up using modern Software Engineering principles to make it more modular and extendible. One of the many changes is about the representation of the data. In previous versions data was represented as an image or as a stack of Images organized in slices. Although this basically allows for arbitrary dimensional data by arranging the slices in a particular order it can become very inecient for high dimensional data in terms of memory access. This issue has been addressed by Preibisch, Toman ák and Saalfel who developed ImgLib[3], a generic Java Image Processing library which is already in use in Fiji. ImgLib allows to implement image processing algorithms independent of the type of data that is being processed. This is achieved through the Cursor which denes an access strategy for the data, Type which denes a data type and the operations on it and Container which addresses the storage of the data. Due to the generic structure of ImgLib some performance issues have appeared for various plug-ins using it but many of them have been addressed and resolved with ImgLib2 which is now the basic data library in ImageJ2. Through the extensive use of interfaces in ImageJ2 many of the before mentioned problems of extending an existing class of ImageJ have basically been eliminated. There is for example now an interface ImageCanvas which can be implemented to draw images and that implementation could then be used to replace an existing implementation such as AWTImageCanvas which is the basic AWT implementation of said interface without any problems. 3 Evolution Strategies Evolution Strategies are one subclass of Evolutionary Algorithms which are often used for optimization problems. Evolutionary Algorithms mimic Darwin's natural 3
4 selection principle in that they consist of a mutation, recombination and selection operators which are applied to individuals of a generation which leads to a next generation. One kind of Evolution Strategies are so called (µ, λ)- ES which consider a parent generation of µ individuals from which an ospring generation of λ individuals is created. The selection operation is based on the tness which is associated with each individual and selects those individuals which have the largest tness. An individual of the population consists of an object parameter value y, a set of strategy parameters s and its tness F (y). 4 The Parameter Optimization Plug-in Before the plug-in can be used the user needs to open the image on which the optimization is supposed to be performed. The macro which is to be applied on the image needs to be written to a le in order to load it into the plug-in. Once these conditions are met the user can use the plug-in. The macro has been implemented with a focus on the MVC pattern so in the following sub sections the model, view and controller are being discussed separately. 4.1 View One of the main goals of this thesis is to make the process of nding good parameters for a macro an easy task. Therefore the user interface needs to be intuitive and should only require a minimal amount of work by the user. To guide the user through the process each step has been labeled accordingly. You can see a walk through with each step of the procedure in the user manual in Appendix A The Selection UI The selection UI is where all necessary congurations for the optimization process are made. It contains a button which opens a le dialog to select the macro, a drop down box to select the strategy, a check box to select whether or not to generate a history of the optimization process which can then be imported into MATLAB, a table for the selection and conguration of the parameters which are found in the macro, a text plane where the macro is displayed and the line containing the currently selected macro is highlighted, a button to save the conguration and a button to start the optimization process once all necessary settings have been made. The UI has been implemented using Swing and uses only standard components and containers The Ranking UI This UI is used to select and rank the images which have been produced by applying the macro with the parameters set to the values of the individuals of the evolution strategy. But it is not restricted to displaying images from the evolution process as it is possible to set arbitrary ImagePlus resources for the images. The constructor of the UI takes three arguments. The rst one is the number of images which will be displayed in this window. The second is the minimal number of images which need to be selected to make a step of the evolution process and the third is the maximal number of images which are to be selected. By selecting an image it is being assigned the next rank starting from 1. This rank is then passed back to the controller which uses it to compute the tness of each individual. The UI consists of 4 main areas: On the top there is a small information area which displays the instruction of how many images need to be selected and it also contains a small info icon which expands a hidden label if the user hovers the mouse over it. In this hidden label are further instructions on how to use the ui and which tools of ImageJ work on the displayed images. In the center is the main panel which contains the images. Using the scroll wheel of the mouse one can scroll through the slices of the image if it is a stack. If the hand tool is selected in the ImageJ toolbar then one can pan the images if they are zoomed in. If the zoom tool is enabled then a left mouse click zooms all images in and a right mouse click zooms all images out. It is also possible to pan the images if the hand tool is not selected but if the space bar is held down. The last manipulation of the display is possible by holding the shift key and scrolling the mouse wheel. This changes the opacity of the overlay image which is the original image before the macro has been applied to it. On the bottom left there are controls for manipulating the image display with scroll bars instead of the scroll wheel. This is also where the current slice or zoom factor is displayed along with the opacity of the overlay image. On the bottom right there is an area containing 4 buttons along with a short description of what their purpose is. There is a 'clear selection' button which clears the selection that has been made, a 'Next' botton which is enabled as soon as the required number of images has been selected/ranked and which calls the controller to make a next optimization step, 4
5 Figure 1: The Selection UI with a simple segmentation macro. a 'Repeat' button which can be used to resample the current population without selecting/ranking any images and it is only enabled as long as no images are currently selected and a 'Finish' button which completes the optimization and calls the controller to apply the macro with the value of the selected image on the input image. If more than one image is selected then the controller will rst compute the mean of the selected values and then apply the macro with the mean to the input image. The controls in the bottom left are synchronized with the displayed images such that a click zoom also changes the value of the zoom scroll bar. The slice selection scroll bar is only displayed if the image is a stack such that the user only sees controls which he can actually use. In order to display the images a customized Canvas subclass has been implemented which contains a few lines of code from the ImageCanvas class which ImageJ uses in the standard image displaying windows. 4.2 Controller The main class of the plug-in is the Parameter_Optimization_Plugin class which implements the PluginFilter interface and the two internally used controller interfaces. Those internal interfaces are used to separate the controller from the user interface such that implementations of either the controller or the user interface can be changed without changes to the other. It also allows to hide methods of the controller intended to be used by the selection UI from the ranking UI and vice versa. The conguration of the plug-in which includes the selected le containing the macro, the ag for whether or not the history of the values and assigned tnesses is being exported at the end of the optimization process, the selected Evolution Strategy, and the settings for the parameters in the parameterized macro is being stored in an instance of class Conguration which can be written to a le and later again loaded from a le to avoid having to congure the same parameters again and again for each image on which the optimization plug-in is being run. The controller creates both an instance of ParameterRankingUI and of ParameterSelectionUI which are being used for interaction with the user. These instances are being created at the point where they are rst required. For the ParameterSelectionUI this is already upon start of the plug-in and the ParameterRankingUI is being created when the conguration is complete and the optimization has been started. Besides the use of ImagePlus in the Ranking UI the class Parameter_Optimization_Plugin is the only class which directly interacts with ImageJ so the classes for 5
6 Figure 2: Ranking UI with one ranked image. (Slice scroll bar hidden because image is not a stack) the user interface are independent of ImageJ and could be used with other libraries through a dierent controller class. 4.3 Model The model in this application consists of the parameterized macro and the Evolution Strategies Parameterized Macro In order to detect parameters in a macro script a simple macro parser has been implemented which recognizes possible parameters in function calls. The parameters which can be detected need either be numbers or be contained in a constant string argument having the form name=value. Numbers in other places such as loops and if-statements are ignored and treated as static code. The macro parsing is implemented in the ParameterizedMacro class which needs to be instantiated with a string containing the macro code. This code is then split into tokens by 3 Abstract Syntax Tree which is a tree like representation of the code. Tokenizer tk = new Tokenizer ( ) ; Program pgm = tk. t o k e n i z e ( macrostring ) ; where the Tokenizer and Program classes of ImageJ are used. This is basically the same step that the macro interpreter of ImageJ makes before actually interpreting the code. The instance of Program which is being created here contains a list of of tokens such as an if-token or a opening bracket token. Unfortunately the current version of ImageJ does not actually parse these tokens into an AST 3 but rather sequentially process the tokens and evaluate the statements which are being recognized and run the plug-ins which are being called. Given an AST it would have been much easier to nd possible parameters. Given the lack of said AST the tokens are being processed sequentially and when a token is reached which stands for a function name then an attempt is made to parse a parameterized method. This attempt succeeds if either a number is found as an argument or a constant string which contains at least one substring matching the before mentioned name=value pattern 6
7 where name consists of letters and numbers and value can be parsed as an instance of type double. If no potential parameter is found in the function call or if an unexpected token appears in the argument list of the function call then the whole sequence of tokens making up the function call is treated as static code and written into a string. But if at least one potential parameter is found then an instance of Parameter is being created and instantiated with the value of the parameter in the macro. This way at the end of the parsing step we get a list of Strings and Doubles which are being referred to by instances of Parameter with corresponding Parameter- Settings which make up the whole macro. Whenever a new instance of Parameter is being created a reference to this instance is added to the list of parameters such that it is possible to directly manipulate the values of the parameters within the macro. In order to run the macro the code list containing the Strings and instances of Parameter are simply being concatenated and then this new macro string is passed to the runmacro method of ImageJ. In the concatenation process the tostring method is called on each instance of Parameter which inserts the current values into the right positions within the macro string and thus runs the macro with the current values for the parameters Evolution Strategies The plug-in uses the interface EvolutionStrategy to interact with strategy implementations during the optimization process. Following are the methods which a strategy needs to implement with a description of what the purpose of the method is. public void setdimension ( int dim ) ; Set the dimension of the optimization space which equals the number of parameters which have been enabled for optimization. public void setdimensionbounds ( Double [ ] lower, Double [ ] upper ) ; Set the bounds for the dimensions. These are the bounds which have been dened by the user for the parameters. public void setdimensionbounds ( int dim, Double lower, Double upper ) ; Set the bounds for one individual dimension. public void s e t O f f s p r i n g S i z e ( int o f f s p r i n g s ) ; Set the number of osprings of each generation. This must be set to the number of images which will be displayed in the ranking UI. public int g e t M i n S e l e c t i o n S i z e ( ) ; Retrieve the minimal number of individuals which need to have positive tness. This value is then set in the ranking UI as the minimal number of images which need to be ranked before a next step can be made. public int g e t M a x S e l e c t i o n S i z e ( ) ; Retrieve the maximal number of individuals whose assigned tness will be used in the evolution step. This value is then set in the ranking UI as the maximal number of images which can be ranked in each step. public void s e t I n i t i a l X ( double [ ] x ) ; Set the initial value from which the rst population is created. public void i n i t i a l i z e ( ) ; Initialize the strategy. Once the strategy has been initialized there will always be a current population available. public void s e t F i t n e s s ( double [ ] f i t n e s s ) ; Set the tness of the individuals of the population. The tness is determined by the ranks which have been assigned to the images and set to be the inverse of the rank for all non-zero ranks. public void makeevolutionstep ( ) ; Makes one evolution step based on the tness which has been set and creates a new population. public void repeatevolutionstep ( ) ; Repeats an evolution step which usually corresponds to resampling from the same distribution with a slightly smaller step size. This method is used if the user decides that none of the images is worth ranking it. public double [ ] [ ] getcurrentpopulation ( ) ; Retrieves the current population from the strategy. The values of the population are then used to run the macro with the dierent values to produce the resulting images. The plug-in currently contains two strategy implementations. One is a simple (µ, λ)-strategy and the other is a CMA implementation by Hansen and Alumni. The simple (µ, λ)-strategy just takes the µ individuals with highest tness and computes the new mean of their values and their strategy parameters σ. The λ new individuals are then sampled from a normal distribution with the computed mean and step size σ. For each individual a strategy parameter σ i is sampled from a dierent distribution around σ. 7
8 5 Future Work ImageJ 2.0 As a major release of ImageJ - namely ImageJ is due in October 2011 it is suggested that the plug-in will be adapted to follow the new design principles of the completely refactored version. Note that due to the backwards compatibility of the new version which will basically include the old version as a library it should be possible to run the plug-in with only minor changes or maybe even without any changes at all. But the new version of ImageJ oers quite a few opportunities for a better integration especially on the side of the user interface. More Strategies The current implementation of the plug-in includes just 2 strategies. It would be nice to have a larger collection of strategies such that if one strategy works slow on a particular optimization problem then an other might be chosen which could work better. Adding a new strategy currently requires a small change in the code of the main plug-in class where the class of the new strategy needs to be added to the list of available strategies. One possible improvement would be to implement a discovery procedure which checks the plug-in directory and/or some subdirectories for implementations of the EvolutionStrategy interface and then dynamically loads them into the plug-in. methods only work for integers which can be circumvented by wrapping the values into a oor or ceil function. In the current version of the plug-in it is necessary to do this by hand before the macro is loaded. A simple type selection in the selection table could avoid this and as mentioned before one could even automatically wrap the arguments of ImageJ methods for which the type is known. Visualization of evolution path The values of the individuals of each generation are being recorded along with their assigned tness and this data can be exported as a simple MATLAB le. The standard user probably hasn't got any interests in this data but it could be quite useful for the analysis of the evolution strategy if an advanced user could see a visualization of the evolution path during the optimization process. History The values and tnesses of individuals are kept in a history data structure which can then be used for the data export as mentioned in the previous paragraph. One idea to improve the usability of the plug-in could be to make this history available such that the user can take a few steps back and take an other direction at some point if he realizes that he has taken some sort of a dead end. Macro Parser The current macro parser has quite a few limitations. It is only able to detect parameters in function calls on the deepest level. If a function call is nested in an other function call then only parameters in the nested function call can be detected. This is due to the scanning procedure which was chosen for this simple parser as the focus was on nding parameters in function calls. One improvement could be to just slightly modify the existing parser to make it consider the nesting functions as well but a more suitable attempt to resolve the issue would be to completely rewrite the parser such that its output would be a parameterized AST instead of a sequence of static code in the form of a String interleaved with Parameter objects. Method awareness The comfort of the conguration for the user could be taken much further by explicitly analyzing in which method the parameter appears. In this case one could restrict the range of parameters for example for the 'makerectangle' method automatically because the we know the dimension of the image in which the selection is to be made. Right now the plug-in always uses doubles for the values when they are replaced in the macro. But some 8
9 Appendix A. User Manual Parameter Optimization Plug-in What's the purpose of this plug-in? If you're working with complex macros that are calling plug-ins and have various parameters for which you need to nd good values then you often had to just try over and over again with dierent values until you got a result which was approximately what you wanted it to be. This is where this plug-in enters the stage. Instead of setting dierent values in the macro by hand and applying the dierent macros on the same image/stack you can now simply select the image and start the Parameter Optimization Plug-in. How does the plug-in work? First you need to make sure that the macro you want to run is written to a le and that you know its location. Then you just open the image or stack you want to run the macro on (like the cell colony image in the samples). 9
10 Then navigate to the Plug-ins menu and choose the Parameter Optimization plug-in Now you should see the following window. This is the conguration window where you set everything up for the optimization. The rst step is now to select the le which contains the macro code which is to be run on the image. When you click on the 'select le...' button a standard le dialog should pop up. By default it opens the macros folder of ImageJ for the macro selection. 10
11 In the next step you need to select the strategy which you want to use for the optimization. In this example you have the choice between a simple (µ,λ) strategy with step size adaption and a CMA strategy. In the above step you can also select the checkbox for the export of a history le if you are interested in analyzing the optimization process. Once you have selected a strategy you can congure the parameters which have been detected in the plug-in. You can enable or disable a parameter, set its initial value and the bounds which it has to satisfy. It is highly recommended that you insert the correct bounds for the parameter if they are known because this can have an impact on the quality of the results and the performance of the optimization. 11
12 Once you have selected at least one parameter for the optimization you can click on the 'start optimization' button to start the optimization process. Note that there is also a possibility to save the current conguration to a conguration le by clicking on the 'save conguration' button. This conguration can later be opened in the rst step instead of a macro le. After a click on the 'start optimization' button you should see a window similar to the following. 12
13 On the bottom left you have an area with 3 sliders which can be used to zoom in, change the currently displayed slice and change the opacity of the overlay image which is the original image. Use these controls to examine the dierent images. Next you have to rank the images by holding the shift key and clicking on them starting with the one you rate best. A number should appear in the top right corner of each ranked image depicting the rank which has been assigned to the image. As you rank images you will notice that the controls on the bottom right either become enabled or disabled based on the number of images you have ranked. If you made a mistake while ranking you can clean the current selection and try again. If the images are so dierent from what you expect them to be that you are not able to rank them then you can try to repeat the evolution step and hope that better results are being produces in that trial. Once you have ranked the number of images which is being displayed in the info eld on top then you can click on the 'Next' button to generate the next set of images based on your ranking. When you made a few optimization steps and arrived at a point where one or several images fulll you expectations then you can nish the optimization process by clicking on the 'Finish' button. This applies the macro with the value of the selected image on the original image. If you checked the box for the export of the evolution data then a le dialog will pop up asking you for the le name to which the values will be written. You should now see your image on which the macro has been applied with the optimized values. 13
14 References [1] J. Cardinale. Bachelor thesis description - Parameter Selection using Evolutionary Strategies in ImageJ (unpublished) [2] ImageJ Features. [3] S. Preibisch, P. Toman ák, and S. Saalfel. Into ImgLib - Generic Image Processing in Java. [4] M. D. Abramo, P. J. Magelhaes, and S.J. Ram. Image processing with ImageJ. Biophotonics Int, 11(7):36-42, [5] Dirk V. Arnold and Hans-Gregor Beyer. Noisy Local Optimization with Evolution Strategies. Kluwer Academic Publishers, Norwell, MA, USA, [6] Hans-Georg Beyer. Theory of Evolution Strategies. Springer, [7] Stephen B. Chrisholm, Dirk V. Arnold, and Stephen Brooks. Tone mapping by interactive evolution. In Proceedings of the 11th Annual conference on Genetic and evolutionary computation, GECCO '09, pages , New York, NY, USA, ACM. [8] Hans-Georg Beyer (2007) Evolution strategies. Scholarpedia, 2(8):
Universal Simple Control, USC-1
Universal Simple Control, USC-1 Data and Event Logging with the USB Flash Drive DATA-PAK The USC-1 universal simple voltage regulator control uses a flash drive to store data. Then a propriety Data and
HOW TO LINK AND PRESENT A 4D MODEL USING NAVISWORKS. Timo Hartmann [email protected]
Technical Paper #1 HOW TO LINK AND PRESENT A 4D MODEL USING NAVISWORKS Timo Hartmann [email protected] COPYRIGHT 2009 VISICO Center, University of Twente [email protected] How to link and present
Desktop, Web and Mobile Testing Tutorials
Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major
Hypercosm. Studio. www.hypercosm.com
Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks
Editors Comparison (NetBeans IDE, Eclipse, IntelliJ IDEA)
České vysoké učení technické v Praze Fakulta elektrotechnická Návrh Uživatelského Rozhraní X36NUR Editors Comparison (NetBeans IDE, Eclipse, ) May 5, 2008 Goal and purpose of test Purpose of this test
DataPA OpenAnalytics End User Training
DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics
Adobe Illustrator CS5 Part 1: Introduction to Illustrator
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Illustrator CS5 Part 1: Introduction to Illustrator Summer 2011, Version 1.0 Table of Contents Introduction...2 Downloading
JustClust User Manual
JustClust User Manual Contents 1. Installing JustClust 2. Running JustClust 3. Basic Usage of JustClust 3.1. Creating a Network 3.2. Clustering a Network 3.3. Applying a Layout 3.4. Saving and Loading
Windows Movie Maker 2012
Windows Movie Maker 2012 Open Windows Movie Maker A shortcut for Movie Maker should be on the desktop, but if it is not, you can search for the program by touching the right edge of the screen and swiping
Schoolwires Staff Website Reference Guide
CONTENTS Signing In... 2 Changing Your Web Account Password... 3 Adding a New Page... 7 Updating A Web Page... 10 Schoolwires Staff Website Reference Guide Inserting an Email Link... 12 Inserting a Web
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA
JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK
JetBrains ReSharper 2.0 Overview Introduction ReSharper is undoubtedly the most intelligent add-in to Visual Studio.NET 2003 and 2005. It greatly increases the productivity of C# and ASP.NET developers,
NIS-Elements Viewer. User's Guide
NIS-Elements Viewer User's Guide Publication date 10.09.2013 v. 4.20.00 Laboratory Imaging, s. r. o., Za Drahou 171/17, CZ - 102 00 Praha 10 No part of this publication may be reproduced or transmitted
Quick use reference book
Quick use reference book 1 Getting Started User Login Window Depending on the User ID, users have different authorization levels. 2 EXAM Open Open the Exam Browser by selecting Open in the Menu bar or
CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide
CONTENTM WEBSITE MANAGEMENT SYSTEM Getting Started Guide Table of Contents CONTENTM WEBSITE MANAGEMENT SYSTEM... 1 GETTING TO KNOW YOUR SITE...5 PAGE STRUCTURE...5 Templates...5 Menus...5 Content Areas...5
GelAnalyzer 2010 User s manual. Contents
GelAnalyzer 2010 User s manual Contents 1. Starting GelAnalyzer... 2 2. The main window... 2 3. Create a new analysis... 2 4. The image window... 3 5. Lanes... 3 5.1 Detect lanes automatically... 3 5.2
Fireworks 3 Animation and Rollovers
Fireworks 3 Animation and Rollovers What is Fireworks Fireworks is Web graphics program designed by Macromedia. It enables users to create any sort of graphics as well as to import GIF, JPEG, PNG photos
Tutorial for Tracker and Supporting Software By David Chandler
Tutorial for Tracker and Supporting Software By David Chandler I use a number of free, open source programs to do video analysis. 1. Avidemux, to exerpt the video clip, read the video properties, and save
RuleBender 1.1.415 Tutorial
RuleBender 1.1.415 Tutorial Installing and Launching RuleBender Requirements OSX Getting Started Linux Getting Started Windows Getting Started Using the Editor The Main Window Creating and Opening Files
core. Volume I - Fundamentals Seventh Edition Sun Microsystems Press A Prentice Hall Title ULB Darmstadt
core. 2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. Volume I - Fundamentals Seventh Edition CAY S. HORSTMANN GARY
ACADEMIC TECHNOLOGY SUPPORT
ACADEMIC TECHNOLOGY SUPPORT Adobe Photoshop Introduction Part 1 (Basics- Image Manipulation) [email protected] 439-8611 www.etsu.edu/ats Table of Contents: Overview... 1 Objectives... 1 Basic Graphic Terminology...
WP Popup Magic User Guide
WP Popup Magic User Guide Plugin version 2.6+ Prepared by Scott Bernadot WP Popup Magic User Guide Page 1 Introduction Thank you so much for your purchase! We're excited to present you with the most magical
Appointment Scheduler
EZClaim Appointment Scheduler User Guide Last Update: 11/19/2008 Copyright 2008 EZClaim This page intentionally left blank Contents Contents... iii Getting Started... 5 System Requirements... 5 Installing
MicroStrategy Desktop
MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from
WP Popup Magic User Guide
WP Popup Magic User Guide Introduction Thank you so much for your purchase! We're excited to present you with the most magical popup solution for WordPress! If you have any questions, please email us at
SAS BI Dashboard 4.3. User's Guide. SAS Documentation
SAS BI Dashboard 4.3 User's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS BI Dashboard 4.3: User s Guide. Cary, NC: SAS Institute
Chapter 14: Links. Types of Links. 1 Chapter 14: Links
1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and
Getting Started Guide
MadCap Software Getting Started Guide Capture 7 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document
Introduction to Computers: Session 3 Files, Folders and Windows
Introduction to Computers: Session 3 Files, Folders and Windows Files and folders Files are documents you create using a computer program. For example, this document is a file, made with a program called
Operating Systems. and Windows
Operating Systems and Windows What is an Operating System? The most important program that runs on your computer. It manages all other programs on the machine. Every PC has to have one to run other applications
Ansur Test Executive. Users Manual
Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About
Joomla! 2.5.x Training Manual
Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials
Data Warehouse Troubleshooting Tips
Table of Contents "Can't find the Admin layer "... 1 "Can't locate connection document "... 3 Column Headings are Missing after Copy/Paste... 5 Connection Error: ORA-01017: invalid username/password; logon
Using Adobe Dreamweaver CS4 (10.0)
Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called
Using Excel as a Management Reporting Tool with your Minotaur Data. Exercise 1 Customer Item Profitability Reporting Tool for Management
Using Excel as a Management Reporting Tool with your Minotaur Data with Judith Kirkness These instruction sheets will help you learn: 1. How to export reports from Minotaur to Excel (these instructions
User Guide Win7Zilla
User Guide Win7Zilla Table of contents Section 1: Installation... 3 1.1 System Requirements... 3 1.2 Software Installation... 3 1.3 Uninstalling Win7Zilla software... 3 Section 2: Navigation... 4 2.1 Main
Visualizing molecular simulations
Visualizing molecular simulations ChE210D Overview Visualization plays a very important role in molecular simulations: it enables us to develop physical intuition about the behavior of a system that is
IntelliSpace PACS 4.4. Image Enabled EMR Workflow and Enterprise Overview. Learning Objectives
IntelliSpace PACS 4.4 Image Enabled EMR Workflow and Enterprise Overview Learning Objectives Use the Cerner EMR to view images and reports via IntelliSpace PACS: Image Launch Workflow (SUBI Image Viewer)
A Tutorial on dynamic networks. By Clement Levallois, Erasmus University Rotterdam
A Tutorial on dynamic networks By, Erasmus University Rotterdam V 1.0-2013 Bio notes Education in economics, management, history of science (Ph.D.) Since 2008, turned to digital methods for research. data
3D Viewer. user's manual 10017352_2
EN 3D Viewer user's manual 10017352_2 TABLE OF CONTENTS 1 SYSTEM REQUIREMENTS...1 2 STARTING PLANMECA 3D VIEWER...2 3 PLANMECA 3D VIEWER INTRODUCTION...3 3.1 Menu Toolbar... 4 4 EXPLORER...6 4.1 3D Volume
TUTORIAL 4 Building a Navigation Bar with Fireworks
TUTORIAL 4 Building a Navigation Bar with Fireworks This tutorial shows you how to build a Macromedia Fireworks MX 2004 navigation bar that you can use on multiple pages of your website. A navigation bar
Exercise 4 Learning Python language fundamentals
Exercise 4 Learning Python language fundamentals Work with numbers Python can be used as a powerful calculator. Practicing math calculations in Python will help you not only perform these tasks, but also
Creating Custom Crystal Reports Tutorial
Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,
User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application
User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application Introduction The original version of Cancer-Rates.Info/NJ, like
First Bytes Programming Lab 2
First Bytes Programming Lab 2 This lab is available online at www.cs.utexas.edu/users/scottm/firstbytes. Introduction: In this lab you will investigate the properties of colors and how they are displayed
Central Management Software CV3-M1024
Table of Contents Chapter 1. User Interface Overview...5 Chapter 2. Installation...6 2.1 Beginning Installation...6 2.2 Starting the CMS software...10 2.3 Starting it from the Start menu...10 2.4 Starting
User s manual 1. Introduction 2. Installation & Requirements 3. Your Tom s Planner account & login 4. Open & Save 5. Grid 6. Blue timeline 7.
User s manual 1. Introduction 3 2. Installation & Requirements 3 3. Your Tom s Planner account & login 4 4. Open & Save 4 5. Grid 6 Rows and groups 6 Columns 7 Time blocks 10 Icons 10 Comments 11 Dependencies
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide
Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick
Turtle Beach Grip 500 Laser Gaming Mouse. User Guide
Turtle Beach Grip 500 Laser Gaming Mouse User Guide Table of Contents Table of Contents... 4 Introduction... 5 Installation... 5 Opening and Closing Grip 500 Configuration Software... 6 Configuring Your
PaperlessPrinter. Version 3.0. User s Manual
Version 3.0 User s Manual The User s Manual is Copyright 2003 RAREFIND ENGINEERING INNOVATIONS All Rights Reserved. 1 of 77 Table of Contents 1. 2. 3. 4. 5. Overview...3 Introduction...3 Installation...4
ArcGIS. Tips and Shortcuts. for Desktop
ArcGIS Tips and Shortcuts for Desktop Map Navigation Refresh and redraw the display. F5 Suspend the map s drawing. F9 Zoom in and out. Center map. Roll the mouse wheel backward and forward. Hold down Ctrl
3D-GIS in the Cloud USER MANUAL. August, 2014
3D-GIS in the Cloud USER MANUAL August, 2014 3D GIS in the Cloud User Manual August, 2014 Table of Contents 1. Quick Reference: Navigating and Exploring in the 3D GIS in the Cloud... 2 1.1 Using the Mouse...
Installing LearningBay Enterprise Part 2
Installing LearningBay Enterprise Part 2 Support Document Copyright 2012 Axiom. All Rights Reserved. Page 1 Please note that this document is one of three that details the process for installing LearningBay
USER MANUAL SlimComputer
USER MANUAL SlimComputer 1 Contents Contents...2 What is SlimComputer?...2 Introduction...3 The Rating System...3 Buttons on the Main Interface...5 Running the Main Scan...8 Restore...11 Optimizer...14
Working With Animation: Introduction to Flash
Working With Animation: Introduction to Flash With Adobe Flash, you can create artwork and animations that add motion and visual interest to your Web pages. Flash movies can be interactive users can click
CREATING A 3D VISUALISATION OF YOUR PLANS IN PLANSXPRESS AND CORTONA VRML CLIENT
CREATING A 3D VISUALISATION OF YOUR PLANS IN PLANSXPRESS AND CORTONA VRML CLIENT 20-25 Minutes This topic is for users of PlansXpress Total Toolkit Edition. To upgrade to PlansXpress Total Toolkit, call
FIRST STEPS WITH SCILAB
powered by FIRST STEPS WITH SCILAB The purpose of this tutorial is to get started using Scilab, by discovering the environment, the main features and some useful commands. Level This work is licensed under
Bitrix Site Manager 4.1. User Guide
Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing
PREPARING PHOTOS for PRINTING
PREPARING PHOTOS for PRINTING GENERAL WORKFLOW Open a PSD file SAVE AS a TIFF File Resize to Printer Resolution using IMAGE SIZE Sharpen with Layer Sharpen Add a Black Border using CANVAS SIZE Set the
Hosted Call Recorder Guide. Rev A (21/11/14)
Hosted Call Recorder Guide Rev A (21/11/14) Replay Interface The Replay area of the Quantify interface is used to retrieve and replay calls from your Red Box Recorder. Below is an example of the interface
Staying Organized with the Outlook Journal
CHAPTER Staying Organized with the Outlook Journal In this chapter Using Outlook s Journal 362 Working with the Journal Folder 364 Setting Up Automatic Email Journaling 367 Using Journal s Other Tracking
Ortelia Space Builder User Manual
Ortelia Space Builder User Manual http://ortelia.com 1 Table of Contents Introducing Ortelia Space Builder... 2 System Requirements... 3 1. Operating system:... 3 2. Hardware:... 3 Minimum Graphics card
Tips and Tricks SAGE ACCPAC INTELLIGENCE
Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,
Glossary of Object Oriented Terms
Appendix E Glossary of Object Oriented Terms abstract class: A class primarily intended to define an instance, but can not be instantiated without additional methods. abstract data type: An abstraction
Applications Development
Paper 21-25 Using SAS Software and Visual Basic for Applications to Automate Tasks in Microsoft Word: An Alternative to Dynamic Data Exchange Mark Stetz, Amgen, Inc., Thousand Oaks, CA ABSTRACT Using Dynamic
MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC
MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL
MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES
MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working
Network Probe User Guide
Network Probe User Guide Network Probe User Guide Table of Contents 1. Introduction...1 2. Installation...2 Windows installation...2 Linux installation...3 Mac installation...4 License key...5 Deployment...5
iview (v2.0) Administrator Guide Version 1.0
iview (v2.0) Administrator Guide Version 1.0 Updated 5/2/2008 Overview This administrator guide describes the processes and procedures for setting up, configuring, running and administering the iview Operator
To familiarise University Web administration staff with the capabilities of the University CMS and also introduce concepts of Web marketing.
Web Training Course: Web Editing - How to use the Content Management System (CMS). Version 1.0 Draft October 2006 Version 1.1 March 2007 Version 1.2 April 2007 Course Rationale: The University is currently
14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë
14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected
Installation Instructions Magento Color Swatch Extension
Installation Instructions Magento Color Swatch Extension Copyright 2010 SMDesign smdesign.rs All rights reserved. Overview This tutorial document describes the basic requirements of Magento Color Swatch
Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004
Data Visualization Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Contents Brief Overview of ArcMap Goals of the Exercise Computer
Getting Started with Vision 6
Getting Started with Vision 6 Version 6.9 Notice Copyright 1981-2009 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop
Sweet Home 3D user's guide
1 de 14 08/01/2013 13:08 Features Download Online Gallery Blog Documentation FAQ User's guide Video tutorial Developer's guides History Reviews Support 3D models Textures Translations Forum Report a bug
MrSID Viewer 2.0 for Windows 95/NT4.0
MrSID Viewer 2.0 for Windows 95/NT4.0 What is MrSID? Introducing MrSID MrSID image compression and decompression software offers users high-quality image-compression capabilities, along with the ability
Writing ImageJ Plugins A Tutorial
Writing ImageJ Plugins A Tutorial Werner Bailer [email protected] Upper Austria University of Applied Sciences Dept. of Media Technology and Design Hagenberg, Austria Version 1.71 Based on ImageJ
Adobe InDesign Creative Cloud
Adobe InDesign Creative Cloud Beginning Layout and Design November, 2013 1 General guidelines InDesign creates links to media rather than copies so -Keep all text and graphics in one folder -Save the InDesign
Visualization of 2D Domains
Visualization of 2D Domains This part of the visualization package is intended to supply a simple graphical interface for 2- dimensional finite element data structures. Furthermore, it is used as the low
Client Admin Site Adding/Editing Content Under Site Builder/Site Navigation Tutorial by Commerce Promote
SiteBuilder (Adding/Editing Content) Enable web pages on your website Add and format text and images Upload images Create Image Links Create Sub Levels Create Hyperlinks Upload Data files (ppt,xls,word
Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505
Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 1 Contents Chapter 1 System Requirements.................. 3 Chapter 2 Quick Start Installation.................. 4 System Requirements................
NAVIGATION TIPS. Special Tabs
rp`=j~êëü~ää=påüççä=çñ=_ìëáåéëë Academic Information Services Excel 2007 Cheat Sheet Find Excel 2003 Commands in Excel 2007 Use this handout to find where Excel 2003 commands are located in Excel 2007.
Code::Block manual. for CS101x course. Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076.
Code::Block manual for CS101x course Department of Computer Science and Engineering Indian Institute of Technology - Bombay Mumbai - 400076. April 9, 2014 Contents 1 Introduction 1 1.1 Code::Blocks...........................................
Backing up IMail Server using Altaro Backup FS
Backing up IMail Server using Altaro Backup FS Purpose The purpose of this document is to provide guidelines and procedures for backing up IMail server system data and user data in case of a hardware or
DSP Laboratory: Analog to Digital and Digital to Analog Conversion
OpenStax-CNX module: m13035 1 DSP Laboratory: Analog to Digital and Digital to Analog Conversion Erik Luther This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License
User Guide. emoney for Outlook
User Guide emoney for Outlook Table of Contents INTRODUCTION... 2 SYSTEM REQUIREMENTS... 2 Required Installations... 2 INSTALLATION PROCESS... 2 FIRST TIME SETUP... 8 EMONEY CLIENT PANE... 17 Client Contact
IDDERO HCx-KNX TOUCH PANELS. Quick start guide. www.iddero.com 130125-02
IDDERO HCx-KNX TOUCH PANELS Quick start guide www.iddero.com 130125-02 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 IDDERO CONFIGURATION SOFTWARE... 3 2.1 Installation and First Steps...3 3 TOUCH PANEL CONFIGURATION...
C Compiler Targeting the Java Virtual Machine
C Compiler Targeting the Java Virtual Machine Jack Pien Senior Honors Thesis (Advisor: Javed A. Aslam) Dartmouth College Computer Science Technical Report PCS-TR98-334 May 30, 1998 Abstract One of the
Getting Started with CodeXL
AMD Developer Tools Team Advanced Micro Devices, Inc. Table of Contents Introduction... 2 Install CodeXL... 2 Validate CodeXL installation... 3 CodeXL help... 5 Run the Teapot Sample project... 5 Basic
M-Files Gantt View. User Guide. App Version: 1.1.0 Author: Joel Heinrich
M-Files Gantt View User Guide App Version: 1.1.0 Author: Joel Heinrich Date: 02-Jan-2013 Contents 1 Introduction... 1 1.1 Requirements... 1 2 Basic Use... 1 2.1 Activation... 1 2.2 Layout... 1 2.3 Navigation...
DROOMS DATA ROOM USER GUIDE. www.drooms.com
USER GUIDE www.drooms.com USER GUIDE Dear User, Whether simply reviewing documentation, sending queries during the due diligence process or administering a data room yourself, Drooms is the software solution
Law Conferencing uses the Webinterpoint 8.2 web conferencing platform. This service is completely reservationless and available 24/7.
Law Conferencing uses the Webinterpoint 8.2 web conferencing platform. This service is completely reservationless and available 24/7. This document contains detailed instructions on all features. Table
WebFOCUS BI Portal: S.I.M.P.L.E. as can be
WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will
The Social Accelerator Setup Guide
The Social Accelerator Setup Guide Welcome! Welcome to the Social Accelerator setup guide. This guide covers 2 ways to setup SA. Most likely, you will want to use the easy setup wizard. In that case, you
Computing Concepts with Java Essentials
2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. Computing Concepts with Java Essentials 3rd Edition Cay Horstmann
