#!/usr/bin/env python # coding: utf-8 # ##chapter content # * the general recognition problem # * face detection # * finger print recognition # * microscopy image analysis # * traffic analysis, one class classifier # * bag of visual word # * remote sensing land use classification # In[1]: get_ipython().run_line_magic('matplotlib', 'inline') import sys sys.path.insert(0,'..') from IPython.display import HTML from helpers import header HTML(header(content=True))