Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

imagej(1) [debian man page]

IMAGEJ(1)																 IMAGEJ(1)

NAME
imagej - A Java image processing program inspired by NIH Image. SYNTAX
imagej [option] <filename> imagej [-i image] [-b|-m] [arg1 ... argN] DESCRIPTION
Imagej is a Java-based image processing program developed at the National Institutes of Health. ImageJ was designed with an open architec- ture that provides extensibility via Java plugins and recordable macros. Custom acquisition, analysis and processing plugins can be devel- oped using ImageJ's built-in editor and a Java compiler. User-written plugins make it possible to solve many image processing and analysis problems, from 3-dimensional live-cell imaging, to radiological image processing, multiple imaging system data comparisons to automated hematology systems. ImageJ's plugin architecture and built in development environment has made it a popular platform for teaching image processing. ImageJ can be run as an online applet, a downloadable application, or on any computer with a Java 1.1 or later virtual machine. OPTIONS
-h Output help information and exit. -o Open images in existing ImageJ panel if one exists. -p <N> Open images in existing ImageJ panel number <N>. -x <MB> Set available memory. -c Enable plugin compilation within imagej. -v Be verbose (vv or vvv increases verbosity). -e Macro Code Execute macro code. -r Menu Command Run menu command. Quotation marks are required around commands including spaces Commands can be sent to open ImageJ panels with the -p option. -b macro Run macro without graphics window. -m macro Run macro, image will be opened before macro is run all following arguments are passed to macro. FILES
Most IMAGEJ add-on are taken from $HOME/.imagej. The system wide equivalent is in /usr/share/imagej/ HOME/.imagej/plugins/, you can find and put new plugins here HOME/.imagej/macros/, you can find and put new macros here HOME/.imagej/luts/, you can find and put new look up tables here EXAMPLES
For compiling plugins: imagej -c SEE ALSO
The program is fully documented at http://imagej.nih.gov/ij/download/src/docs/ AUTHOR
ImageJ was written by Wayne Rasband <wsr@nih.gov> This manual page, the wrapper and packaging was done by Paolo Ariano <paolo.ariano@unito.it>, for the Debian project. Paolo Ariano March 14, 2008 IMAGEJ(1)

Check Out this Related Man Page

RABBITMQ-PLUGINS(1)						 RabbitMQ Service					       RABBITMQ-PLUGINS(1)

NAME
rabbitmq-plugins - command line tool for managing RabbitMQ broker plugins SYNOPSIS
rabbitmq-plugins {command} [command options...] DESCRIPTION
rabbitmq-plugins is a command line tool for managing RabbitMQ broker plugins. It allows one to enable, disable and browse plugins. It must be run by a user with write permissions to the RabbitMQ configuration directory. Some plugins depend on others to work correctly. rabbitmq-plugins traverses these dependencies and enables all required plugins. Plugins listed on the rabbitmq-plugins command line are marked as explicitly enabled; dependent plugins are marked as implicitly enabled. Implicitly enabled plugins are automatically disabled again when they are no longer required. COMMANDS
list [-v] [-m] [-E] [-e] [pattern] -v Show all plugin details (verbose). -m Show only plugin names (minimal). -E Show only explicitly enabled plugins. -e Show only explicitly or implicitly enabled plugins. pattern Pattern to filter the plugin names by. Lists available plugins, their versions, dependencies and descriptions. Each plugin is prefixed with a status indicator - [ ] to indicate that the plugin is not enabled, [E] to indicate that it is explicitly enabled, and [e] to indicate that it is implicitly enabled. If the optional pattern is given, only plugins whose name matches pattern are shown. enable {plugin ...} plugin One or more plugins to enable. Enables the specified plugins and all their dependencies. disable {plugin ...} plugin One or more plugins to disable. Disables the specified plugins and all plugins that depend on them. EXAMPLES
rabbitmq-plugins list This command lists all the plugins available, on one line each. rabbitmq-plugins list -v This command lists all the plugins available. rabbitmq-plugins list -v management This command lists all the plugins available, but does not display plugins whose name does not contain "management". rabbitmq-plugins list -e rabbit This command lists all implicitly or explicitly enabled RabbitMQ plugins. rabbitmq-plugins enable rabbitmq_shovel rabbitmq_management This command enables the shovel and management plugins and all their dependencies. rabbitmq-plugins disable amqp_client This command disables amqp_client and all plugins that depend on it. AUTHOR
The RabbitMQ Team <info@rabbitmq.com> RabbitMQ Server 06/22/2012 RABBITMQ-PLUGINS(1)
Man Page