Class AlgorithmHarrisLaplace

java.lang.Object
java.lang.Thread
gov.nih.mipav.model.algorithms.AlgorithmBase
gov.nih.mipav.model.algorithms.AlgorithmHarrisLaplace
All Implemented Interfaces:
AlgorithmInterface, ActionListener, WindowListener, Runnable, EventListener

public class AlgorithmHarrisLaplace extends AlgorithmBase implements AlgorithmInterface
  • Field Details

    • xOp

      private static final int xOp
      See Also:
    • yOp

      private static final int yOp
      See Also:
    • xxOp

      private static final int xxOp
      See Also:
    • xyOp

      private static final int xyOp
      See Also:
    • yyOp

      private static final int yyOp
      See Also:
    • logOp

      private static final int logOp
      See Also:
    • Ix

      private double[] Ix
    • Iy

      private double[] Iy
    • Ix2

      private double[] Ix2
    • Ixy

      private double[] Ixy
    • Iy2

      private double[] Iy2
    • log

      private double[] log
    • operationType

      private int operationType
    • epsilon

      private double epsilon
  • Constructor Details

    • AlgorithmHarrisLaplace

      public AlgorithmHarrisLaplace()
      AlgorithmHarrisLaplace - default constructor.
    • AlgorithmHarrisLaplace

      public AlgorithmHarrisLaplace(ModelImage srcImg)
      AlgorithmHarrisLaplace.
      Parameters:
      srcImg - DOCUMENT ME!
  • Method Details

    • finalize

      public void finalize()
      finalize -
      Overrides:
      finalize in class AlgorithmBase
    • runAlgorithm

      public void runAlgorithm()
      Starts the program.
      Specified by:
      runAlgorithm in class AlgorithmBase
    • algorithmPerformed

      public void algorithmPerformed(AlgorithmBase algorithm)
      Description copied from interface: AlgorithmInterface
      Called after an algorithm this listener is registered to exits (maybe successfully, maybe not). If the algorithm is run in a separate thread, this call will be made within that thread. If not, this call will be made from that same, shared thread.
      Specified by:
      algorithmPerformed in interface AlgorithmInterface
      Parameters:
      algorithm - the algorithm which has just completed