__init__.py 155 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 __author__ = 'chunk' __all__ = ['FeatureBase'] class FeatureBase(object): def __init__(self): pass def feat(self, image): pass