Learn the basic methods of digital image analysis and pattern recognition: pre-processing, image segmentation, shape representation and classification. These concepts will be illustrated by applications in computer vision and medical image analysis.
This repository contains the material for the labs and project associated with the EPFL master course EE-451 Image Analysis and Pattern Recognition.
The lab assignments aim to impart practical implementation skills related to the topics covered in class and serve as preparation for the final project. The final project is a hands-on endeavor that consolidates the concepts covered throughout the course. The labs themselves are in the form of Jupyter Notebooks, and need to be solved in groups of three students. Please make your groups on Moodle before March 8th
.
It is important to note that the labs will be graded. For each lab, each group is required to submit one Jupyter notebook on Moodle, following the naming convention lab_x_SCIPER1_SCIPER2_SCIPER3.ipynb
, where 'x' indicates the lab number, and SCIPER1, SCIPER2, and SCIPER3 denote the SCIPER of each group member.
To ensure uniformity and minimize code conflicts, we strongly advise following the provided Installation Instructions
below.
Important Note: Before submitting each notebook, please execute the command Kernel > Restart & Run All
to run the entire notebook from scratch. This ensures that the code runs correctly. We will re-run each notebook during evaluation to verify the correctness of your code.
We will be using git, Python, and packages from the Python scientific stack. If you don't know how to install these on your platform, we recommend to install Anaconda or Miniconda, both are distributions of the conda package and environment manager. Please follow the below instructions to install it and create an environment for the course:
.exe
file..pkg
file.bash Anaconda3-latest-Linux-x86_64.sh
in your terminal.conda create -n iapr python=3.9.18
.conda activate iapr
.activate iapr
.conda install notebook
deactivate
conda install git
.Github
section below.Git serves as a valuable tool for collaborative teamwork. To seamlessly access the upcoming labs and projects we'll be releasing throughout the semester, and to facilitate collaboration using Git, we highly recommend following these steps:
<my_group_repo>
, on Github. Ensure that it does not include README.md
and .gitignore
.git clone https://github.com/<my_group_repo>
.git remote add upstream https://github.com/LTS5/iapr2024.git
(or use the SSH variant if preferred).git pull upstream main
.git push origin main
.Throughout the semester, we will periodically update the iapr
repository with new labs and the project. To sync with the latest data, execute git pull upstream main
. Exercise caution for potential conflicts; it's advisable to rename your Juypter Notebooks to lab_x_SCIPER1_SCIPER2_SCIPER3.ipynb
(See Lab instructions) to prevent accidental overwriting of your code during merges.
Jupyter is a very useful editor that run directly in a web browser. You can have Python and Markdown cells, hence it is very useful for examples, tutorials and labs. We encourage to use it for the lab assignments. To launch a Jupyter Notebook:
/path/to/iapr
source activate iapr
(For Windows:
activate iapr
)jupyter notebook
.