#!/usr/bin/env python # coding: utf-8 # In[1]: get_ipython().run_cell_magic('javascript', '', "$.getScript('../ipython_notebook_toc.js');\n") # In[3]: get_ipython().run_line_magic('matplotlib', 'inline') import sys sys.path.insert(0,'..') from IPython.display import HTML from helpers import header HTML(header()) # Aim of this course # ================ # The objectives of the course is to give knowledge of image analysis techniques and machine learning methods. # #### After attending the course a student should be able to: # # * understand different kind of images # * analyse and decompose an image recognition problem into some basic steps # * propose features to extract from the raw data for a given problem # * implement an image processing chain using generic tools and specialized libraries # * choose an adequate machine learning algorithm to solve pattern recognition tasks # # In[ ]: