{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Introduction to image processing - LABS" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "collapsed": false }, "outputs": [], "source": [ "from IPython.display import HTML, display\n", "from helpers import chapters_to_html" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "

\n", "Outline\n", "

\n", "
    \n", "
  1. readme
    1. \n", "
    \n", "
  2. Image information
    1. \n", "
    \n", "
  3. Convolution
    1. \n", "
    \n", "
  4. Color spaces
    1. \n", "
    \n", "
  5. Morphological operations
    1. \n", "
    \n", "
  6. Object description
    1. \n", "
    \n" ], "text/plain": [ "" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "HTML(chapters_to_html('./LABS/'))" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 7, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from IPython.core.display import HTML\n", "def css_styling():\n", " styles = open(\"./styles/custom.css\", \"r\").read()\n", " return HTML(styles)\n", "css_styling()" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Last updated: 15/10/2015\n" ] }, { "data": { "text/html": [ "\n", " show/hide source code\n", " " ], "text/plain": [ "" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "%matplotlib inline\n", "import time\n", "print('Last updated: %s' %time.strftime('%d/%m/%Y'))\n", "import sys\n", "sys.path.insert(0,'..')\n", "from IPython.display import HTML\n", "from helpers import show_hide\n", "HTML(show_hide)" ] }, { "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 }