Search
The labs cover selected image processing methods. For each method, the students are provided with a Jupyter notebook that contains a brief explanation and a template for the implementation. The students are tasked to follow the template and complete the implementation.
Some of the labs include a short quiz (see Organization). The quizzes target selected material from the lecture as indicated in the schedule below.
See information about the semester work.
Although the students can use the lab computers, they are strongly encouraged to use their own devices, which will allow them to work on the assignments at home. The easiest way to install all required software is through the Mamba system. Follow the instructions to get a Micromamba installation.
After installing Mamba, create a new environment and install the required dependencies:
micromamba create -n zmo python=3 jupyter matplotlib numpy -c conda-forge
To verify the installation, activate the fresh environment
micromamba activate zmo
and check that the following commands exit successfuly:
python -c "import numpy; import matplotlib" jupyter notebook --version