001/*******************************************************************************
002 * This software is provided as a supplement to the authors' textbooks on digital
003 * image processing published by Springer-Verlag in various languages and editions.
004 * Permission to use and distribute this software is granted under the BSD 2-Clause
005 * "Simplified" License (see http://opensource.org/licenses/BSD-2-Clause).
006 * Copyright (c) 2006-2023 Wilhelm Burger, Mark J. Burge. All rights reserved.
007 * Visit https://imagingbook.com for additional details.
008 ******************************************************************************/
009
010package imagingbook.common.corners;
011
012import ij.process.ImageProcessor;
013
014import static imagingbook.common.math.Arithmetic.isZero;
015
016
017/**
018 * <p>
019 * This is an implementation of the corner detector described in [1]. This class extends {@link GradientCornerDetector}
020 * (where most of the work is done) by defining a specific corner score function and associated threshold. The corner
021 * score is defined as the harmonic mean of the local structure tensor's eigenvalues lambda_1, lambda_2. See Sec. 6.3.2
022 * of [2] for additional details.
023 * </p>
024 * <p>
025 * [1] M. Brown, R. Szeliski, and S. Winder, Multi-image matching using multi-scale oriented patches, in Proc. of the
026 * IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR'05), 2005, pp. 510–517.
027 * <br>
028 * [2] W. Burger, M.J. Burge, <em>Digital Image Processing &ndash; An Algorithmic Introduction</em>, 3rd ed, Springer
029 * (2022).
030 * </p>
031 *
032 * @author WB
033 * @version 2022/03/30
034 */
035public class MopsCornerDetector extends GradientCornerDetector {
036        
037        public static double DEFAULT_THRESHOLD = 90;
038        
039//      public static class Parameters extends GradientCornerDetector.Parameters {
040//              
041//              public Parameters() {
042//                      scoreThreshold = DEFAULT_THRESHOLD;     // individual default threshold
043//              }
044//      }
045
046        public MopsCornerDetector(ImageProcessor ip, GradientCornerDetector.Parameters params) {
047                super(ip, params);
048        }
049        
050        // --------------------------------------------------------------
051
052        @Override
053        protected float getCornerScore(float A, float B, float C) {
054                float trace = A + B;
055                if (isZero(trace)) {
056                        return UndefinedScoreValue;
057                }
058                float det = A * B - C * C;
059                return det / trace;
060        }
061
062}