#!/usr/bin/env python # coding: utf-8 # 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()) # Continuous integration # =================== # Because language and libraries used are subject to modification, a continuous integration process is implemented. Each time a new version is pushed onto the master branch, a complete execution of the code is done in both python 2 and python 3 with the last available libraries version. # If everything is going fine, it should be green on the [main page](https://github.com/odebeir/info-h-500-501#introduction-to-image-processing) of the Github repository. # # More information about the status of the last build can be found on [Travis CI](https://travis-ci.org/odebeir/info-h-500-501). # Version 2015-2015 # # [![Build Status](https://travis-ci.org/odebeir/info-h-500-501.svg?branch=ver_2015-2016)](https://travis-ci.org/odebeir/info-h-500-501) # In[ ]: