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.
 

14 lines
634 B

var dCmds = newMenu("Developer Menu Tool",
newArray("Record...", "Capture Screen ", "Monitor Memory...", "Find Commands...",
"Search...", "ImageJ Properties", "List Elements", "Debug Mode", "ImageJ Website...",
"-", "Image...", "Hyperstack...", "Macro", "Open...",
"-", "Blobs", "Fly Brain", "HeLa Cells (48-bit RGB)", "Image with Overlay",
"Mitosis (5D stack)", "T1 Head (16-bits)"));
macro "Developer Menu Tool - C037T0b14DT9b12eTfb12v" {
cmd = getArgument();
if (cmd=="Debug Mode")
setOption("DebugMode", true);
else if (cmd!="-")
run(cmd);
}