#!/usr/bin/env python # coding: utf-8 # ##chapter content # * intro machine vision # * pin-hole camera model # * stereo-vision, multi-view # * image registration # * Harris corner detection # * Fast # * sift, surf, others # * DoG pyramid # * Robust object detection # * SLAM # 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))