#!/usr/bin/env python # coding: utf-8 # # Introduction to image processing # In[ ]: # In[13]: from IPython.display import HTML, display from helpers import chapters_to_html # In[14]: HTML(chapters_to_html()) # In[15]: from IPython.display import SVG SVG('https://travis-ci.org/odebeir/info-h-500-501.svg?branch=master') # In[16]: get_ipython().run_line_magic('matplotlib', 'inline') import time print('Last updated: %s' %time.strftime('%d/%m/%Y')) import sys sys.path.insert(0,'..') from IPython.display import HTML from helpers import show_hide HTML(show_hide) # In[17]: from IPython.core.display import HTML def css_styling(): styles = open("./styles/custom.css", "r").read() return HTML(styles) css_styling()