{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n", "<< back to chapter content

Last updated: 22/10/2015

\n", " show/hide source code\n", " " ], "text/plain": [ "" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "%matplotlib inline\n", "import sys\n", "sys.path.insert(0,'..')\n", "from IPython.display import HTML,Image,SVG,YouTubeVideo\n", "from helpers import header\n", "\n", "HTML(header())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Gray level morphology\n", "\n", "## Definitions\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Erosion\n", "The equivalent gray level for the erosion operator is the local minimum." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Dilation\n", "The equivalent gray level for the dilation operator is the local maximum." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ ">see also:\n", "* Morphological algorithms [MMIP](../00-Preface/06-References.ipynb#[MMIP]) p255-288" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.10" } }, "nbformat": 4, "nbformat_minor": 0 }