diff --git a/object_detector/config.pyc b/object_detector/config.pyc index fde95863..61fd0201 100644 Binary files a/object_detector/config.pyc and b/object_detector/config.pyc differ diff --git a/object_detector/detector.py b/object_detector/detector.py index 5c025a86..9cf82366 100644 --- a/object_detector/detector.py +++ b/object_detector/detector.py @@ -52,7 +52,7 @@ def detector(filename): if im_window.shape[0] != min_wdw_sz[1] or im_window.shape[1] != min_wdw_sz[0]: continue im_window = color.rgb2gray(im_window) - fd = hog(im_window, orientations, pixels_per_cell, cells_per_block, visualize, normalize) + fd = hog(im_window, orientations, pixels_per_cell, cells_per_block) fd = fd.reshape(1, -1) pred = clf.predict(fd)