#!/usr/bin/env python # coding: utf-8 # # Chapter content # * optimal, entropy, percentile threshold # * Otsu threshold # * 2D threshold # * gaussian mixture # * condensation algorithm # * graph-cuts # * hierarchical # * region growing # * split and merge # # 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)) # In[ ]: