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

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