ImageJ base code to get access to all the classes and their methods to test new Plugins. https://imagejdocu.tudor.lu/howto/plugins/the_imagej_eclipse_howto
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
663 B

var sCmds = newMenu("Stacks Menu Tool",
newArray("Add Slice", "Delete Slice", "Set Slice...",
"-", "3D Project...", "Grouped Z Project...", "Z Project...", "Orthogonal Views", "Plot Z-axis Profile", "Reslice [/]...",
"-", "Images to Stack", "Stack to Images", "Make Montage...",
"-", "Make Substack...", "Stack to Hyperstack...",
"-", "Combine...", "Concatenate...", "Flip Z", "Label...", "Animation Options...",
"-", "T1 Head (2.4M, 16-bits)"));
macro "Stacks Menu Tool - C037T0b11ST8b09tTcb09k" {
cmd = getArgument();
if (cmd=="Images to Stack")
run(cmd, " ");
else if (cmd!="-")
run(cmd);
}