#!/usr/bin/env python # coding: utf-8 # ## chapter content # * chain coding # * polygonal approximation # * spectral description (intensity) # * 2D shape descriptors (contours) # * 2D shape descriptors (region) area, euler, elong,... # * moments # * texture analysis # * Minkowski fractal dimension # * fractal analysis: Hurst coeficient # * Gabor filter # 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[ ]: