From 1b9a15a4d4f47bf0b5a6f7b2ea64e447515f73ec Mon Sep 17 00:00:00 2001 From: Ivo Flipse Date: Thu, 18 Jun 2015 18:38:59 +0200 Subject: [PATCH] Made the indents line up with the ( --- skimage/feature/_hoghistogram.pyx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/skimage/feature/_hoghistogram.pyx b/skimage/feature/_hoghistogram.pyx index 1851b907..fde149dd 100644 --- a/skimage/feature/_hoghistogram.pyx +++ b/skimage/feature/_hoghistogram.pyx @@ -6,11 +6,11 @@ import numpy as np cimport numpy as cnp cdef float cell_hog(cnp.float64_t[:, :] magnitude, - cnp.float64_t[:, :] orientation, - float orientation_start, float orientation_end, - int cell_columns, int cell_rows, - int column_index, int row_index, - int size_columns, int size_rows): + cnp.float64_t[:, :] orientation, + float orientation_start, float orientation_end, + int cell_columns, int cell_rows, + int column_index, int row_index, + int size_columns, int size_rows): """Calculation of the cell's HOG value Parameters @@ -60,12 +60,12 @@ cdef float cell_hog(cnp.float64_t[:, :] magnitude, return total def hog_histograms(cnp.float64_t[:, :] gradient_columns, - cnp.float64_t[:, :] gradient_rows, - int cell_columns, int cell_rows, - int size_columns, int size_rows, - int number_of_cells_columns, int number_of_cells_rows, - int number_of_orientations, - cnp.float64_t[:, :, :] orientation_histogram): + cnp.float64_t[:, :] gradient_rows, + int cell_columns, int cell_rows, + int size_columns, int size_rows, + int number_of_cells_columns, int number_of_cells_rows, + int number_of_orientations, + cnp.float64_t[:, :, :] orientation_histogram): """Extract Histogram of Oriented Gradients (HOG) for a given image. Parameters