Week 10 - Docker And OpenCV Experiment
Task Goal
This week strengthens Docker image workflow and verifies OpenCV-related dependencies for robot vision experiments.
Folder Check
week10/ |-- README.md # required report |-- img/ # output image
Environment
- Docker
- Python
- OpenCV
- PyBullet
Steps
- Enter the ROS2 container environment.
- Install OpenCV and PyBullet.
- Verify that the environment works.
- Save the configured container as an image.
Commands
docker commit -m "install pybullet and opencv" d8e79722b2b0 my-ros2-full:v1.0
docker images
docker ps
Result

Summary
The task prepares a reusable vision environment. OpenCV and PyBullet support later perception and simulation work.