#!/usr/bin/env python # coding: utf-8 # ##chapter content # * background substraction # * assignement problem/ hungarian method # * least square method # * RANSAC # * optical flow # * meanshift 2D/3D # * cell tracking # * particle filter # * body skeleton fitting on range data (particle filter) # * face tracking using color histogram # * 3D reconstruction from n-range images # 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))