====== Labs ====== 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 [[courses:zmo:start#organization | Organization]]). The quizzes target selected material from the lecture as indicated in the schedule below. See information about the [[courses:zmo:semestral:start|semester work]]. ===== Schedule ===== ^ Week ^ Date ^ Topic ^ Quiz topics ^ | 1 | 25. 9. | {{ :courses:zmo:tutorials:week01.zip | Introduction }} | //no quiz// | | 2 | 2. 10. | {{ :courses:zmo:tutorials:week02.zip | Active contours }} | 1.1, 1.3 | | 3 | 9. 10. | {{ :courses:zmo:tutorials:week03.zip | Point distribution models }} | 2.1, 2.2 | | 4 | 16. 10. | {{ :courses:zmo:tutorials:week04.zip | SLIC }} | 3.1, 3.3 | | 5 | 23. 10. | {{ :courses:zmo:tutorials:week05.zip | Texture features & Graphcut }} | 4.1, 4.2 | | 6 | 30. 10. | {{ :courses:zmo:tutorials:week06.zip | Deep learning: segmentation (U-Net) }} | 5.1, 5.2 | | 7 | 6. 11. | {{ :courses:zmo:tutorials:week07.zip | Cell detection }} | 6.1, 6.2 | | 8 | 13. 11. | {{ :courses:zmo:tutorials:week08.zip | Frangi vesselness filter }} | (//no quiz//) | | 9 | 20. 11. | {{ :courses:zmo:tutorials:week09.zip | Nodule detection }} | 8.1, 8.2 | | 10 | 27. 11. | {{ :courses:zmo:tutorials:week10.zip | B-splines }} | 9.1, 9.2 | | 11 | 4. 12. | {{ :courses:zmo:tutorials:week11.zip | Registration }} | 10.1, 10.2 | | 12 | 11. 12. | {{ :courses:zmo:tutorials:week12.zip | Registration (Simple ITK) }} | 11.1, 11.2 + B-splines from lecture | | 13 | 18. 12. | Semester work: consultation | (//no quiz//) | | 14 | 8. 1. | Semester work: presentation | (//no quiz//) | ===== Required software ===== 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 [[https://mamba.readthedocs.io/|Mamba]] system. Follow the [[https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html|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 It is necessary to always activate the Mamba environment before using Jupyter: micromamba activate zmo