Package qupath.opencv

Class DetectCytokeratinCV

All Implemented Interfaces:
PathInteractivePlugin<BufferedImage>, PathPlugin<BufferedImage>

public class DetectCytokeratinCV extends AbstractDetectionPlugin<BufferedImage>
Simple command to detect tumor regions stained with cytokeratin.
Author:
Pete Bankhead
  • Constructor Details

    • DetectCytokeratinCV

      public DetectCytokeratinCV()
  • Method Details

    • getDefaultParameterList

      public ParameterList getDefaultParameterList(ImageData<BufferedImage> imageData)
      Description copied from class: AbstractInteractivePlugin
      This should return a default ParameterList containing any information that is needed to repeat the task exactly.
      Specified by:
      getDefaultParameterList in interface PathInteractivePlugin<BufferedImage>
      Specified by:
      getDefaultParameterList in class AbstractInteractivePlugin<BufferedImage>
      Parameters:
      imageData -
      Returns:
    • getName

      public String getName()
      Description copied from interface: PathPlugin
      Get the name of the plugin for display.

      This should be descriptive and, above all, short - as it may be used for menu item names & dialog box titles.

      Returns:
    • getDescription

      public String getDescription()
      Description copied from interface: PathPlugin
      Get a brief description of the plugin's purpose & operation.

      If no description is provided, this may return null.

      Returns:
    • getLastResultsDescription

      public String getLastResultsDescription()
      Description copied from interface: PathPlugin
      (Optional) short one-line description of the results, e.g. to say how many objects detected. GUIs may choose to display this on a label during interactive processing.
      Returns:
    • addRunnableTasks

      protected void addRunnableTasks(ImageData<BufferedImage> imageData, PathObject parentObject, List<Runnable> tasks)
      Description copied from class: AbstractPlugin
      For a specified parent object, generate a task to run. In practice, this method can be overridden to return anything/nothing if getTasks is overridden instead.
      Specified by:
      addRunnableTasks in class AbstractPlugin<BufferedImage>
      Parameters:
      imageData -
      parentObject -
      tasks -