#!/usr/bin/env python # coding: utf-8 # # Introduction to image processing - LABS # In[5]: from IPython.display import HTML, display from helpers import chapters_to_html # In[6]: HTML(chapters_to_html('./LABS/')) # In[ ]: # In[7]: from IPython.core.display import HTML def css_styling(): styles = open("./styles/custom.css", "r").read() return HTML(styles) css_styling() # In[8]: 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[ ]: