Evaluation of Interest Point Detectors

CORDELIA SCHMIDROGER MOHRCHRISTIAN BAUCKHAGE

article2000IJCV1,781 citations

Establishes a rigorous benchmarking framework using repeatability rate and information content to quantitatively determine which interest point detectors provide the highest geometric stability and feature distinctiveness across varying imaging conditions.

Listen

Many computer vision applicationssuch as image matching, 3D scene reconstruction, and automated object recognitiondepend heavily on the reliable extraction of low-level visual features known as interest points. Historically, evaluating these detectors relied on subjective human visual inspections, narrow feature models, or application-specific pipelines that were difficult to generalize. Because the choice of detector dramatically alters system performance, developers need objective, generalizable benchmarks to choose the best algorithms for multi-image processing tasks.

The article establishes two rigorous, automated evaluation criteriarepeatability rate and information contentto quantitatively assess and rank leading interest point detectors across realistic operating conditions.

The evaluation framework tests detectors across two fundamental dimensions. First, repeatability measures the geometric stability of detected points across changing physical imaging conditions, including image rotations, scale changes, lighting variations, viewpoint shifts, and camera sensor noise. Geometric ground truth is established on static scenes using projective transformations calculated via independently projected calibration patterns. Second, information content evaluates the distinctiveness of local image patterns around detected points using entropy measurements across a dataset of 1,000 diverse images (aerial scenes, paintings, and objects) to quantify how well these features prevent ambiguity during matching.

The experimental results identify an improved version of the Harris detectorimplemented with stable Gaussian derivative filtersas the top-performing method overall. Under image rotations, this improved detector maintains nearly a 100% repeatability rate within a 1.5-pixel error margin, completely eliminating the 45-degree performance dips seen in standard discrete implementations. Across viewpoint changes, it consistently maintains repeatability above 60%, significantly outperforming contour-based and model-based alternatives. In distinctiveness evaluations, the improved Harris detector achieved the highest entropy score (6.05), followed closely by the biologically inspired Heitger detector (5.94), whereas contour-only detectors scored noticeably lower and random points produced an entropy of only 3.30 (making false feature collisions roughly 15.6 times more likely). Across all detectors, scale changes proved to be the most severe vulnerability, with repeatability collapsing rapidly when image scale varied by a factor of 1.5 to 2.0 or greater.

These findings provide clear practical guidelines for system designers. Selecting an interest point detector that maximizes both repeatability and information content substantially lowers the risk of feature mismatching, reduces downstream computational overhead, and improves tracking stability. The results also show that relying strictly on image contours degrades overall feature distinctiveness, and using unaligned directional derivative filters introduces hidden geometric vulnerabilities when images rotate.

For immediate deployment in matching and tracking pipelines, the article recommends using the improved Gaussian-based Harris detector. To overcome the universal limitation of scale sensitivity, engineering teams should incorporate these interest point operators into multi-scale frameworks or implement explicit scale-selection mechanisms before applying them to scenes with large zoom or distance changes.

Confidence in these findings is high for planar and general surface matching under rotation, lighting changes, and moderate viewpoint variations. However, decision-makers should note that the geometric ground-truth validation is mathematically constrained to planar scenes to avoid confounding detector performance with physical occlusions and shadow boundaries that naturally occur in complex 3D environments.

  • Paper: Local Grayvalue Invariants for Image Retrieval, Cordelia Schmid et al. (1997). Introduces local grayvalue invariants at interest points for image matching and retrieval, establishing the foundational local-feature paradigm evaluated and benchmarked in the source paper.
  • Paper: Feature Detection with Automatic Scale Selection, Tony Lindeberg (1998). Develops the principles of automatic scale selection and differential scale-space feature detection that underpin multi-scale interest point formulation and evaluation.
  • Paper: Scale & Affine Invariant Interest Point Detectors, K. Mikolajczyk et al. (2004). Builds directly on the repeatability evaluation methodology to develop and validate scale- and affine-invariant interest point detectors such as Harris-Laplace.
  • Paper: A Comparison of Affine Region Detectors, K. Mikolajczyk et al. (2005). Extends the source's evaluation framework to affine-covariant region detectors using homography-based repeatability and descriptor matching benchmarks.
  • Paper: A performance evaluation of local descriptors, Krystian Mikolajczyk et al. (2005). Complements interest point detector evaluation by establishing a systematic benchmark for the local descriptors extracted around those detected points.
  • Paper: Distinctive Image Features from Scale-Invariant Keypoints, David G. Lowe (2004). Presents scale-invariant feature transform (SIFT) keypoint detection and description, heavily relying on repeatability and distinctiveness criteria established in earlier feature evaluation work.
  • Paper: Machine Learning for High-Speed Corner Detection, Edward Rosten et al. (2006). Uses the repeatability metric formalized in interest point evaluation benchmarks to design and evaluate the high-speed FAST corner detector.
  • Paper: SURF: Speeded Up Robust Features, Herbert Bay et al. (2006). Introduces SURF as an accelerated scale- and rotation-invariant detector-descriptor pair evaluated against standard repeatability and distinctiveness protocols.
  • Paper: On Space-Time Interest Points, I. Laptev (2005). Generalizes the spatial interest point concept and scale selection principles into the spatio-temporal domain for video event representation.
  • Paper: SuperPoint: Self-Supervised Interest Point Detection and Description, Daniel DeTone et al. (2017). Revisits repeatable interest point detection in a modern deep learning framework using self-supervised homographic adaptation.
Cover for Evaluation of Interest Point Detectors

Abstract

Many different low-level feature detectors exist and it is widely agreed that the evaluation of detectors is important. In this paper we introduce two evaluation criteria for interest points: repeatability rate and information content. Repeatability rate evaluates the geometric stability under different transformations. Information content measures the distinctiveness of features. Different interest point detectors are compared using these two criteria. We determine which detector gives the best results and show that it satisfies the criteria well.

Table of Contents

  • 1. Introduction
  • 1.1. Related Work on the Evaluation of Feature Detectors
  • 1.2. Overview of the Paper
  • 2. Interest Point Detectors
  • 2.1. State of the Art
  • 2.2. Implementation Details
  • 3. Repeatability
  • 3.1. Repeatability Criterion
  • 3.2. Experimental Conditions
  • 3.3. Results for Repeatability
  • 3.4. Conclusion for Repeatability
  • 4. Information Content
  • 4.1. Information Content Criterion
  • 4.2. Entropy
  • 4.3. Descriptors Characterizing Local Shape
  • 4.4. Partitioning a Set of Descriptors
  • 4.5. Results for Information Content
  • 5. Conclusion
  • Appendix A: Derivation of the Auto-Correlation Matrix
  • Appendix B: Repeatability Results for the 'Asterix' Scene
  • B.1. Comparison of the Two Harris Versions
  • B.2. Image Rotation
  • B.3. Scale Change
  • B.4. Uniform Variation of Illumination
  • B.5. Camera Noise
  • Acknowledgments
  • References

Knowls

  1. Knowl 1 — Repeatability Rate Criterion for Interest Point Evaluation

    definition

    The repeatability rate measures the geometric stability of an interest point detector when a static scene is imaged under changing viewing conditions (such as varying camera viewpoint, rotation, scale, illumination, or sensor noise). For a planar 3D scene imaged across two views I1I_1 and IiI_i with camera projection matrices P1P_1 and PiP_i, the geometric mapping between corresponding image points x1=P1Xx_1 = P_1 X and xi=PiXx_i = P_i X is defined by a planar homography:

    xi=H1ix1whereH1i=PiP11x_i = H_{1i} x_1 \quad \text{where} \quad H_{1i} = P_i P_1^{-1}

    where H1iH_{1i} is the 3×33 \times 3 homography matrix mapping homogeneous coordinates from I1I_1 to IiI_i, and Hi1=H1i1H_{i1} = H_{1i}^{-1}.

    To ensure that points outside the shared field of view do not distort the evaluation, only interest points situated within the overlapping scene area are evaluated:

    {x~1}={x1{x1}H1ix1Ii}and{x~i}={xi{xi}Hi1xiI1}\{\tilde{x}_1\} = \{x_1 \in \{x_1\} \mid H_{1i} x_1 \in I_i\} \quad \text{and} \quad \{\tilde{x}_i\} = \{x_i \in \{x_i\} \mid H_{i1} x_i \in I_1\}

    where {x1}\{x_1\} and {xi}\{x_i\} are the raw sets of interest points detected in I1I_1 and IiI_i, respectively.

    Given a localization error tolerance ϵ>0\epsilon > 0 (in pixels), the set of ϵ\epsilon-repeated point pairs Ri(ϵ)R_i(\epsilon) is:

    Ri(ϵ)={(x~1,x~i){x~1}×{x~i}dist(H1ix~1,x~i)<ϵ}R_i(\epsilon) = \{ (\tilde{x}_1, \tilde{x}_i) \in \{\tilde{x}_1\} \times \{\tilde{x}_i\} \mid \operatorname{dist}(H_{1i} \tilde{x}_1, \tilde{x}_i) < \epsilon \}

    where dist(,)\operatorname{dist}(\cdot, \cdot) is the Euclidean distance in the coordinate frame of image IiI_i.

    The repeatability rate ri(ϵ)r_i(\epsilon) is defined as the number of repeated points divided by the minimum number of detected points in the common scene part:

    ri(ϵ)=Ri(ϵ)min(n1,ni)r_i(\epsilon) = \frac{|R_i(\epsilon)|}{\min(n_1, n_i)}

    where n1={x~1}n_1 = |\{\tilde{x}_1\}| and ni={x~i}n_i = |\{\tilde{x}_i\}|. The rate satisfies 0ri(ϵ)10 \le r_i(\epsilon) \le 1.

  2. Knowl 2 — Information Content Criterion for Interest Points

    definition

    Information content measures the distinctiveness of a detector's extracted interest points based on the distribution of their local greyvalue descriptors across the descriptor space. If interest point descriptors cluster closely together, the features lack distinctiveness and matching algorithms (such as correlation or nearest-neighbor feature matching) will suffer from severe ambiguity. If descriptors are widely spread across the descriptor space, distinctiveness is high.

    For a set of interest points detected across an image collection, a local greyvalue descriptor vector vRd\vec{v} \in \mathbb{R}^d is computed at each interest point. The descriptor space is partitioned into a discrete set of disjoint cells A={Ak}\mathcal{A} = \{A_k\}. The information content is defined as the Shannon entropy of this partition:

    H(A)=kpklog(pk)H(\mathcal{A}) = -\sum_k p_k \log(p_k)

    where pkp_k is the empirical probability that a detected interest point descriptor falls into cell AkA_k. Higher entropy corresponds to a higher average information content per feature and greater distinctiveness.

  3. Knowl 3 — Second-Order Local Jet Differential Invariant Descriptors

    model/method

    To characterize local image geometry at interest points independently of 2D image rotations (invariance under SO(2)SO(2)), descriptors are constructed from combinations of Gaussian image derivatives up to second order (the local jet).

    Let I(x,y)I(x, y) be the image intensity surface and Li1in(x,y,σ)=IGi1in(x,y,σ)L_{i_1 \dots i_n}(x, y, \sigma) = I * G_{i_1 \dots i_n}(x, y, \sigma) denote the convolution of II with the nn-th partial Gaussian derivative kernel at scale σ\sigma, with ik{x,y}i_k \in \{x, y\}. The four-dimensional rotation-invariant descriptor v=(v0,v1,v2,v3)T\vec{v} = (v_0, v_1, v_2, v_3)^T computed at scale σ\sigma (omitting zeroth-order average luminance to ensure illumination invariance) is defined by:

    v=[Lx2+Ly2LxxLx2+2LxyLxLy+LyyLy2Lxx+LyyLxx2+2Lxy2+Lyy2]\vec{v} = \begin{bmatrix} L_x^2 + L_y^2 \\ L_{xx} L_x^2 + 2 L_{xy} L_x L_y + L_{yy} L_y^2 \\ L_{xx} + L_{yy} \\ L_{xx}^2 + 2 L_{xy}^2 + L_{yy}^2 \end{bmatrix}

    The components correspond to standard differential invariants:

    • v0v_0 is the squared gradient magnitude.
    • v1v_1 represents the directional second derivative along the gradient direction weighted by the gradient magnitude.
    • v2v_2 is the Laplacian of the Gaussian-smoothed image.
    • v3v_3 is the squared Frobenius norm of the Hessian matrix.
  4. Knowl 4 — Mahalanobis Partitioning Algorithm for Descriptor Entropy Evaluation

    algorithm

    To compute the entropy of continuous differential invariant descriptors vR4\vec{v} \in \mathbb{R}^4, the descriptor space is normalized to account for descriptor noise covariance and then partitioned into uniform hypercube bins.

    The procedure runs as follows:

    Input: Set of descriptor vectors V={vj}j=1MRdV = \{\vec{v}_j\}_{j=1}^M \subset \mathbb{R}^d, bin width parameter ww (w=20w = 20)
    Output: Information content entropy H(A)H(\mathcal{A})
    Compute sample mean vˉ=1Mj=1Mvj\bar{\vec{v}} = \frac{1}{M} \sum_{j=1}^M \vec{v}_j
    Compute sample covariance matrix Λ=1Mj=1M(vjvˉ)(vjvˉ)T\Lambda = \frac{1}{M} \sum_{j=1}^M (\vec{v}_j - \bar{\vec{v}})(\vec{v}_j - \bar{\vec{v}})^T
    Compute eigendecomposition of the inverse covariance matrix Λ1=PTDP\Lambda^{-1} = P^T D P, where PP is orthogonal and DD is diagonal with positive eigenvalues
    Form whitening transformation matrix T=D1/2PT = D^{1/2} P
    For each vector vjV\vec{v}_j \in V:
        Compute normalized descriptor vnorm,j=Tvj\vec{v}_{\text{norm}, j} = T \vec{v}_j
        Compute grid cell coordinate kj=vnorm,j/wZd\mathbf{k}_j = \lfloor \vec{v}_{\text{norm}, j} / w \rfloor \in \mathbb{Z}^d
    Count the number of descriptors c(k)c(\mathbf{k}) assigned to each unique grid cell k\mathbf{k}
    For each occupied cell k\mathbf{k}:
        Compute probability p(k)=c(k)/Mp(\mathbf{k}) = c(\mathbf{k}) / M
    Compute entropy H(A)=kp(k)log(p(k))H(\mathcal{A}) = -\sum_{\mathbf{k}} p(\mathbf{k}) \log(p(\mathbf{k}))
    return H(A)H(\mathcal{A})

    The Mahalanobis distance between raw descriptors matches the Euclidean distance between normalized descriptors: dM(v1,v2)=vnorm,1vnorm,22d_M(\vec{v}_1, \vec{v}_2) = \| \vec{v}_{\text{norm}, 1} - \vec{v}_{\text{norm}, 2} \|_2, ensuring that equal-sized cubic bins in normalized space reflect uniform probability densities under isotropic noise.

  5. Knowl 5 — Improved Harris Detector (ImpHarris)

    model/method

    The standard Harris detector uses a discrete difference filter [2,1,0,1,2][-2, -1, 0, 1, 2] to compute image derivatives, creating directional bias that significantly degrades repeatability under image rotation. The improved Harris detector (ImpHarris) replaces the discrete mask with isotropic Gaussian derivative filters.

    The detection pipeline consists of:

    1. Gradient computation: Image derivatives Ix,IyI_x, I_y are computed by convolving the image with first-order Gaussian derivative filters at differentiation scale σD=1.0\sigma_D = 1.0 (implemented via Deriche recursive filters for speed).
    2. Structure tensor integration: The auto-correlation matrix A(x,y)A(x, y) is computed by Gaussian smoothing over an integration neighborhood at scale σI=2.0\sigma_I = 2.0:
    A(x,y)=G(σI)[Ix(x,y)2Ix(x,y)Iy(x,y)Ix(x,y)Iy(x,y)Iy(x,y)2]A(x, y) = G(\sigma_I) * \begin{bmatrix} I_x(x, y)^2 & I_x(x, y) I_y(x, y) \\ I_x(x, y) I_y(x, y) & I_y(x, y)^2 \end{bmatrix}
    1. Corner strength measurement: The corner response is computed as:
    R(x,y)=det(A(x,y))α(trace(A(x,y)))2R(x, y) = \det(A(x, y)) - \alpha \, (\operatorname{trace}(A(x, y)))^2

    with α=0.06\alpha = 0.06. 4. Non-maximum suppression: Local maxima of R(x,y)R(x, y) are detected using a 3×33 \times 3 window. 5. Thresholding: Points with corner strength below 1%1\% of the maximum observed corner response in the image are discarded.

  6. Knowl 6 — Ground-Truth Homography Estimation via Projected Dot Grid

    experimental setup

    To evaluate interest point repeatability without relying on the detector outputs or subjective human ground truth, ground-truth homographies between image pairs are obtained via an independent sub-pixel calibration target.

    For every camera position and illumination setting on a static planar scene:

    1. A primary test image of the unmodified scene is acquired.
    2. A secondary calibration image is acquired without moving the camera, during which an overhead projector at a fixed location casts an array of discrete black dots onto the scene.

    The dot centers in the calibration images are localized to sub-pixel accuracy by template fitting. The inter-image homography H1iH_{1i} relating reference image I1I_1 to image IiI_i is computed from the matched dot coordinates using a robust Least Median of Squares (LMedS) estimator. Because the projector remains fixed throughout camera motion, dot positions provide objective, sub-pixel ground-truth homographies that are completely decoupled from the feature extraction algorithms under test.

  7. Knowl 7 — Information Content of Interest Point Detectors

    data/table

    The information content of interest point detectors was evaluated across a diverse collection of 1,000 images (aerial images, paintings, and toy objects). Second-order differential invariant descriptors were extracted at scale σ=3\sigma = 3, normalized using Mahalanobis whitening, binned into cubic cells of width 20, and their Shannon entropy calculated. A random baseline was obtained by uniformly sampling mm points per image, where mm matched the average number of points extracted by the evaluated detectors.

    Detector Information content
    ImpHarris 6.049526
    Heitger 5.940877
    Horaud 5.433776
    Cottier 4.846409
    Förstner 4.523368
    Random 3.300863

    The measurements show:

    • ImpHarris yields the highest entropy (6.056.05), indicating the greatest diversity and distinctiveness in local appearance patterns.
    • Heitger is a close second (5.945.94).
    • Detectors constrained to edge contours (Cottier at 4.854.85, Horaud at 5.435.43) produce lower entropy because restricting interest points to 1D contours limits the diversity of surrounding 2D intensity patterns.
    • All detectors significantly exceed random point selection (3.303.30). The probability of two randomly selected points sharing the same descriptor bin is e(3.306.05)15.6e^{-(3.30 - 6.05)} \approx 15.6 times higher than for points detected by ImpHarris.
  8. Knowl 8 — Repeatability Performance Under Rotation and Viewpoint Variation

    empirical result

    Under 2D in-plane image rotations ranging from 00^\circ to 180180^\circ:

    • ImpHarris achieves the highest repeatability, maintaining approximately 90%90\% to 100%100\% repeatability at localization tolerance ϵ=1.5\epsilon = 1.5 pixels and 40%\sim 40\% at ϵ=0.5\epsilon = 0.5 pixels uniformly across all rotation angles.
    • The standard Harris detector suffers periodic degradation in repeatability at 4545^\circ rotation increments due to the anisotropy of its [2,1,0,1,2][-2, -1, 0, 1, 2] derivative filter.
    • Detectors combining directional 1D filter responses (Heitger) or anisotropic filters (F"orstner) degrade significantly between 4040^\circ and 140140^\circ.
    • Line-intersection corner extraction (Horaud) yields the lowest rotation repeatability (sim2030%\\sim 20-30\% at ϵ=1.5\epsilon = 1.5).

    Under out-of-plane perspective viewpoint changes spanning camera angles from 50-50^\circ to +50+50^\circ:

    • ImpHarris maintains superior repeatability over all competing detectors, exceeding 60%60\% repeatability across almost the entire angular range for ϵ=1.5\epsilon = 1.5 pixels.
    • Tight localization requirements (ϵ=0.5\epsilon = 0.5 pixels) degrade rapidly under perspective distortion, while an error tolerance of ϵ=1.5\epsilon = 1.5 pixels preserves robust correspondence.
  9. Knowl 9 — Scale Sensitivity Limitation of Fixed-Scale Interest Point Detectors

    empirical result

    Interest point detectors utilizing fixed-size derivative and smoothing filters (including ImpHarris, Cottier, F"orstner, Heitger, and Horaud) degrade rapidly in the presence of camera zoom and scale changes.

    Empirical evaluation across focal length scale factors from 1.01.0 to 4.54.5 shows:

    • At localization tolerance ϵ=0.5\epsilon = 0.5 pixels, repeatability drops precipitously for scale factors exceeding 1.51.5.
    • At ϵ=1.5\epsilon = 1.5 pixels, repeatability drops sharply beyond a scale factor of 2.02.0 (for ImpHarris, repeatability drops from 85%\sim 85\% at scale factor 1.01.0 to 54%54\% at scale factor 1.51.5, 25%\sim 25\% at scale factor 2.02.0, and below 5%5\% for scale factors greater than 3.03.0).
    • Beyond a scale factor of approximately 2.52.5, detected correspondences are largely accidental matches caused by high point density in high-resolution texture areas.
    • ImpHarris and Cottier outperform other detectors under small scale changes, but no fixed-scale detector maintains practical repeatability under scale variations greater than a factor of 22.
  10. Knowl 10 — Repeatability Under Illumination Variation and Camera Noise

    empirical result

    Under uniform illumination variation (adjusting camera aperture over relative mean greyvalue ratios of 0.60.6 to 1.71.7 relative to nominal illumination):

    • Repeatability decreases smoothly and symmetrically as brightness deviates from nominal levels, with ImpHarris and Heitger achieving the highest stability (>8590%> 85-90\% repeatability at ϵ=1.5\epsilon = 1.5 pixels across moderate illumination shifts).

    Under complex, non-uniform illumination changes (moving a light source along an arc of 45-45^\circ to +45+45^\circ causing moving directional shadows and localized saturation):

    • ImpHarris maintains nearly constant repeatability (sim90%\\sim 90\% at ϵ=1.5\epsilon = 1.5 pixels across all light source angles), indicating that localized gradient auto-correlation is largely invariant to illumination direction, whereas contour-intersection detectors (Horaud) fall to 3040%30-40\%.

    Under camera sensor noise across repeated static scene captures:

    • ImpHarris and Heitger achieve nearly 100%100\% repeatability at ϵ=1.5\epsilon = 1.5 pixels and 90%\sim 90\% at ϵ=0.5\epsilon = 0.5 pixels, outperforming F"orstner (7580%75-80\%) and Horaud (45%45\%).

Coverage note — Previous literature review of existing corner/edge detectors and duplicate experimental repeatability curves for the secondary Asterix scene in Appendix B (which yielded identical comparative conclusions to the primary Van Gogh dataset) were omitted.

References

  1. 1.Asada, H. and Brady, M. 1986. The curvature primal sketch. IEEE Transactions on Pattern Analysis and Machine Intelligence, 8(1):2–14.
  2. 2.Baker, S. and Nayar, S.K. 1999. Global measures of coherence for edge detector evaluation. In Proceedings of the Conference on Computer Vision and Pattern Recognition, Fort Collins, Colorado, USA, pp. 373–379.
  3. 3.Baker, S., Nayar, S.K., and Murase, H. 1998. Parametric feature detection. International Journal of Computer Vision, 27(1):27–50.
  4. 4.Beaudet, P.R. 1978. Rotationally invariant image operators. In Proceedings of the 4th International Joint Conference on Pattern Recognition, Tokyo, pp. 579–583.
  5. 5.Bowyer, K.W., Kranenburg, C., and Dougherty, S. 1999. Edge detector evaluation using empirical ROC curves. In Proceedings of the Conference on Computer Vision and Pattern Recognition, Fort Collins, Colorado, USA, pp. 354–359.
  6. 6.Brand, P. and Mohr, R. 1994. Accuracy in image measure. In Proceedings of the SPIE Conference on Videometrics III, Boston, Massachusetts, USA, Vol. 2350, pp. 218–228.
  7. 7.Canny, J. 1986. A computational approach to edge detection. IEEE Transactions on Pattern Analysis and Machine Intelligence, 8(6):679–698.
  8. 8.Coelho, C., Heller, A., Mundy, J.L., Forsyth, D., and Zisserman, A. 1991. An experimental evaluation of projective invariants. In Proceeding of the DARPA–ESPRIT Workshop on Applications of Invariants in Computer Vision, Reykjavik, Iceland, pp. 273–293.
  9. 9.Cooper, J., Venkatesh, S., and Kitchen, L. 1993. Early jump-out corner detectors. IEEE Transactions on Pattern Analysis and Machine Intelligence, 15(8):823–833.
  10. 10.Cottier, J.C. 1994. Extraction et appariements robustes des points d’intérêt de deux images non étalonnées. Technical Report, LIFIA–IMAG–INRIA Rhône-Alpes.
  11. 11.Demigny, D. and Kamlé, T. 1997. A discrete expression of Canny’s criteria for step edge detector performances evaluation. IEEE Transactions on Pattern Analysis and Machine Intelligence, 19(11):1199–1211.
  12. 12.Deriche, R. 1987. Using Canny’s criteria to derive a recursively implemented optimal edge detector. International Journal of Computer Vision, 1(2):167–187.
  13. 13.Deriche, R. 1993. Recursively implementing the Gaussian and its derivatives. Technical Report, INRIA.
  14. 14.Deriche, R. and Blaszka, T. 1993. Recovering and characterizing image features using an efficient model based approach. In Proceedings of the Conference on Computer Vision and Pattern Recognition, New York, USA, pp. 530–535.
  15. 15.Deriche, R. and Giraudon, G. 1993. A computational approach for corner and vertex detection. International Journal of Computer Vision, 10(2):101–124.
  16. 16.Dreschler, L. and Nagel, H.H. 1982. Volumetric model and 3D trajectory of a moving car derived from monocular TV frame sequences of a street scene. Computer Graphics and Image Processing, 20:199–228.
  17. 17.Förstner, W. 1994. A framework for low level feature extraction. In Proceedings of the 3rd European Conference on Computer Vision, Stockholm, Sweden, pp. 383–394.
  18. 18.Förstner, W. and Gülch, E. 1987. A fast operator for detection and precise location of distinct points, corners and centres of circular features. In Intercommission Conference on Fast Processing of Photogrammetric Data, Interlaken, Switzerland, pp. 281–305.
  19. 19.Harris, C. and Stephens, M. 1988. A combined corner and edge detector. In Alvey Vision Conference, pp. 147–151.
  20. 20.Heath, M.D., Sarkar, S., Sanocki, T., and Bowyer, K.W. 1997. A robust visual method for assessing the relative performance of edge-detection algorithms. IEEE Transactions on Pattern Analysis and Machine Intelligence, 19(12):1338–1359.
  21. 21.Heitger, F., Rosenthaler, L., von der Heydt, R., Peterhans, E., and Kuebler, O. 1992. Simulation of neural contour mechanism: From simple to end-stopped cells. Vision Research, 32(5):963–981.
  22. 22.Heyden, A. and Rohr, K. 1996. Evaluation of corner extraction schemes using invariance methods. In Proceedings of the 13th International Conference on Pattern Recognition, Vienna, Austria, Vol. I, pp. 895–899.
  23. 23.Horaud, R., Skordas, T., and Veillon, F. 1990. Finding geometric and relational structures in an image. In Proceedings of the 1st European Conference on Computer Vision, Antibes, France, pp. 374–384.
  24. 24.Kitchen, L. and Rosenfeld, A. 1982. Gray-level corner detection. Pattern Recognition Letters, 1:95–102.
  25. 25.Koenderink, J.J. and van Doorn, A.J. 1987. Representation of local geometry in the visual system. Biological Cybernetics, 55:367–375.
  26. 26.Laganière, R. 1998. Morphological corner detection. In Proceedings of the 6th International Conference on Computer Vision, Bombay, India, pp. 280–285.
  27. 27.López, A.M., Lumbreras, F., Serrat, J., and Villanueva, J.J. 1999. Evaluation of methods for ridge and valley detection. IEEE Transactions on Pattern Analysis and Machine Intelligence, 21(4):327–335.
  28. 28.Medioni, G. and Yasumoto, Y. 1987. Corner detection and curve representation using cubic B-splines. Computer Vision, Graphics and Image Processing, 39:267–278.
  29. 29.Mokhtarian, F. and Mackworth, A. 1986. Scale-based description and recognition of planar curves and two-dimensional shapes. IEEE Transactions on Pattern Analysis and Machine Intelligence, 8(1):34–43.
  30. 30.Mokhtarian, F. and Suomela, R. 1998. Robust image corner detection through curvature scale space. IEEE Transactions on Pattern Analysis and Machine Intelligence, 20(12):1376–1381.
  31. 31.Moravec, H.P. 1977. Towards automatic visual obstacle avoidance. In Proceedings of the 5th International Joint Conference on Artificial Intelligence, Cambridge, Massachusetts, USA, p. 584.
  32. 32.Nagel, H.H. 1983. Displacement vectors derived from second order intensity variations in image sequences. Computer Vision, Graphics and Image Processing, 21:85–117.
  33. 33.Papoulis, A. 1991. Probability, Random Variables, and Stochastic Processes. McGraw Hill.
  34. 34.Parida, L., Geiger, D., and Hummel, R. 1998. Junctions: Detection, classification, and reconstruction. IEEE Transactions on Pattern Analysis and Machine Intelligence, 20(7):687–698.
  35. 35.Perona, P. 1995. Deformable kernels for early vision. IEEE Transactions on Pattern Analysis and Machine Intelligence, 17(5):488–499.
  36. 36.Phillips, P.J. and Bowyer, K.W. 1999. Introduction to the special section on empirical evaluation of computer vision algorithms. IEEE Transactions on Pattern Analysis and Machine Intelligence, 21(4):289–290.
  37. 37.Pikaz, A. and Dinstein, I. 1994. Using simple decomposition for smoothing and feature point detection of noisy digital curves. IEEE Transactions on Pattern Analysis and Machine Intelligence, 16(8):808–813.
  38. 38.Reisfeld, D., Wolfson, H., and Yeshurun, Y. 1995. Context-free attentional operators: The generalized symmetry transform. International Journal of Computer Vision, 14(2):119–130.
  39. 39.Rohr, K. 1992. Recognizing corners by fitting parametric models. International Journal of Computer Vision, 9(3):213–230.
  40. 40.Rohr, K. 1994. Localization properties of direct corner detectors. Journal of Mathematical Imaging and Vision, 4(2):139–150.
  41. 41.Romeny, B.M., Florack, L.M.J., Salden, A.H., and Viergever, M.A. 1994. Higher order differential structure of images. Image and Vision Computing, 12(6):317–325.
  42. 42.Semple, J.G. and Kneebone, G.T. 1952. Algebraic Projective Geometry. Oxford Science Publication.
  43. 43.Shi, J. and Tomasi, C. 1994. Good features to track. In Proceedings of the Conference on Computer Vision and Pattern Recognition, Seattle, Washington, USA,pp. 593–600.
  44. 44.Shilat, E., Werman, M., and Gdalyahu, Y. 1997. Ridge’s corner detection and correspondence. In Proceedings of the Conference on Computer Vision and Pattern Recognition, Puerto Rico, USA, pp. 976–981.
  45. 45.Shin, M.C., Goldgof, D., and Bowyer, K.W. 1998. An objective comparison methodology of edge detection algorithms using a structure from motion task. In Proceedings of the Conference on Computer Vision and Pattern Recognition, Santa Barbara, California, USA, pp. 190–195.
  46. 46.Shin, M.C., Goldgof, D., and Bowyer, K.W. 1999. Comparison of edge detectors using an object recognition task. In Proceedings of the Conference on Computer Vision and Pattern Recognition, Fort Collins, Colorado, USA, pp. 360–365.
  47. 47.Smith, S.M. and Brady, J.M. 1997. SUSAN—A new approach to low level image processing. International Journal of Computer Vision, 23(1):45–78.
  48. 48.Tomasi, C. and Kanade, T. 1991. Detection and tracking of point features. Technical Report CMU-CS-91-132, Carnegie Mellon University.
  49. 49.Zhang, Z., Deriche, R., Faugeras, O., and Luong, Q.T. 1995. A robust technique for matching two uncalibrated images through the recovery of the unknown epipolar geometry. Artificial Intelligence, 78:87–119.

Citation

MLA
Schmid, C., et al. “Evaluation of Interest Point Detectors”. International Journal of Computer Vision, vol. 37, no. 2, 2000, pp. 151–72, https://doi.org/10.1023/A:1008199403446.
APA
Schmid, C., Mohr, R., & Bauckhage, C. (2000). Evaluation of Interest Point Detectors. International Journal of Computer Vision, 37(2), 151–172. https://doi.org/10.1023/A:1008199403446
Chicago
Schmid, C., R. Mohr, and C. Bauckhage. 2000. “Evaluation of Interest Point Detectors”. International Journal of Computer Vision 37 (2): 151–72. https://doi.org/10.1023/A:1008199403446.
Harvard
Schmid, C., Mohr, R. and Bauckhage, C. (2000) “Evaluation of Interest Point Detectors”, International Journal of Computer Vision, 37(2), pp. 151–172. Available at: https://doi.org/10.1023/A:1008199403446.
Vancouver
1. Schmid C, Mohr R, Bauckhage C (2000) Evaluation of Interest Point Detectors. International Journal of Computer Vision 37:151–172

BibTeX

@article{Schmid_2000, title={Evaluation of Interest Point Detectors}, volume={37}, ISSN={1573-1405}, url={http://dx.doi.org/10.1023/A:1008199403446}, DOI={10.1023/a:1008199403446}, number={2}, journal={International Journal of Computer Vision}, publisher={Springer Science and Business Media LLC}, author={Schmid, Cordelia and Mohr, Roger and Bauckhage, Christian}, year={2000}, month=June, pages={151–172} }
Metadata:Crossref

Access the Paper

This paper is available from its original source. Click below to access the PDF.

Open PDF