From da30925dd506ab4bb5e99d628a84025ad9daa62c Mon Sep 17 00:00:00 2001 From: Ankit Agrawal Date: Thu, 22 Aug 2013 20:06:11 +0530 Subject: [PATCH] More optimizations --- skimage/feature/corner_cy.pyx | 1 + 1 file changed, 1 insertion(+) diff --git a/skimage/feature/corner_cy.pyx b/skimage/feature/corner_cy.pyx index d8c97f25..154c4987 100644 --- a/skimage/feature/corner_cy.pyx +++ b/skimage/feature/corner_cy.pyx @@ -116,6 +116,7 @@ def _corner_fast(double[:, ::1] image, char n, double threshold): cdef char *rp = [0, 1, 2, 3, 3, 3, 2, 1, 0, -1, -2, -3, -3, -3, -2, -1] cdef char *cp = [3, 3, 2, 1, 0, -1, -2, -3, -3, -3, -2, -1, 0, 1, 2, 3] + cdef char bins[16] cdef double circle_intensities[16]