Skip to content

Commit 0999da1

Browse files
committed
Merge pull request #9 from iory/master
rename missed name
2 parents e28dfc4 + 79581d2 commit 0999da1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ch10/large_classification.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
('classifier', grid)])
2525

2626
def features_for(im):
27-
from features import color_histogram
27+
from features import chist
2828
im = mh.imread(im)
2929
img = mh.colors.rgb2grey(im).astype(np.uint8)
3030
return np.concatenate([mh.features.haralick(img).ravel(),
31-
color_histogram(im)])
31+
chist(im)])
3232

3333
def images():
3434
'''Iterate over all (image,label) pairs

0 commit comments

Comments
 (0)