ImageJ / Fiji set of plugins and macros providing user friendly handling and visualization of microscopy images

- in Fiji, add the Image Viewer Update Site. That's it.
- For ImageJ, download this github repository
Then in your imageJ app folder : place the Image Viewer folder on thepluginsfolder and the Image_Viewer_Toolset.ijm file on themacros /toolsets/folder
All commands and plugins are located in the Plugins > Image Viewer menu.
However, The easiest way to access commands is from the toolbar menu you can find as Image_Viewer_Toolset under the red >> menu in the ImageJ window:
{:width="300px"}
This will install a "View" menu in your Toolbar will all Image Viewer commands!
Note :
If you like these tools so much you need to get them installed at every starts, just copy this macro code and past it at the end of your
Fiji/macros/StartupMacros.fiji.ijmfor FijiImageJ/macros/StartupMacros.txtfor ImageJ
var viewer_Menu = newMenu("Image Viewer Menu Tool",
newArray(
"Channels and Contrast",
"LUTs Manager",
"Multi Tool",
"-",
"Split View (multi-channel montage)",
"Auto scale bar",
"Create Preview Opener",
"Image Viewer options",
"-",
"Auto contrast all images",
"Auto contrast all channels",
"Auto contrast active channel",
"Reset min max all images",
"Reset min max all channels",
"Reset min max active channel",
"Same contrast to all opened images",
"-",
"Save all opened images as",
"Image Viewer online help"
)
);
macro "Image Viewer Menu Tool - N20C000 T0c15v T8c10i Tac10e Tfc10w" {
command = getArgument();
run(command);
}