Skip to content
Michael Entrup edited this page Aug 23, 2013 · 7 revisions

EFTEMj wiki

Welcome to the EFTEMj wiki!

Introduction

This wiki will provide you additional information to the plugins included in EFTEMj. All plugins are separated into different categories. Here is a List of all categories:

Main concepts of EFTEMj

Independent plugins

The functions that EFTEMj supports are delivered as independent plugins. There will be no master plugin to select a function, but all plugins can be accessed from the menu entry [Plugins > EFTEMj] that is defined by the plugins.config file. Each class that represents a plugin contains the word plugin in it's name.

Graphical user interface

EFTEMj is a package combining several independent ImageJ plugins. That is why each plugin has to provide its own graphical user interface (GUI). The ImageJ class GenericDialog is the first choice to create a GUI for ImageJ plugins. Only a few lines of code are necessary to create a dialog and the usage of GenericDialog guaranties that it is possible to use the plugin from within a macro.

For more details about GenericDialog go to the GenericDialog Tutorial.