Interface PlugInAlgorithm

All Superinterfaces:
PlugIn

public interface PlugInAlgorithm extends PlugIn
This is the MIPAV plugin interface for Algorithms. New algorithms are added by implementing the run method of this interfae in a class.
Author:
mccreedy
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String[]
     

    Fields inherited from interface gov.nih.mipav.plugins.PlugIn

    Category
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run(Frame parentFrame, ModelImage image)
    Run the plugin algorithm.
  • Field Details

    • CATEGORY

      static final String[] CATEGORY
  • Method Details

    • run

      void run(Frame parentFrame, ModelImage image)
      Run the plugin algorithm.
      Parameters:
      parentFrame - frame that displays the MIPAV image. Can be used as a parent frame when building dialogs.
      image - model of the MIPAV image.
      See Also: