From 691beaa59f2c668b6b0ac005adc458d7f87b4b4c Mon Sep 17 00:00:00 2001 From: Ivo Flipse Date: Fri, 19 Jun 2015 15:49:48 +0200 Subject: [PATCH] Adding nogil to cell_hog --- skimage/feature/_hoghistogram.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/feature/_hoghistogram.pyx b/skimage/feature/_hoghistogram.pyx index 9731251b..496770b4 100644 --- a/skimage/feature/_hoghistogram.pyx +++ b/skimage/feature/_hoghistogram.pyx @@ -10,7 +10,7 @@ cdef float cell_hog(double[:, ::1] magnitude, float orientation_start, float orientation_end, int cell_columns, int cell_rows, int column_index, int row_index, - int size_columns, int size_rows): + int size_columns, int size_rows) nogil: """Calculation of the cell's HOG value Parameters