ImageJS
    Preparing search index...

    Function getShiTomasiScore

    • Get the Shi-Tomasi score of a corner. The idea is similar to Harris score, but it removes constant to calculate the score and just takes the minimum from two eigenvalues. We distinguish 3 cases:

      • the score is highly negative: you have an edge
      • the absolute value of the score is small: the region is flat
      • the score is highly positive: you have a corner.

      Parameters

      • image: Image

        Image to which the corner belongs. It must be a greyscale image with only one channel.

      • origin: Point

        Center of the window, where the corner should be.

      • options: GetShiTomasiScoreOptions = {}

        Get Shi-Tomasi score options.

      Returns number

      The Shi-Tomasi score.