# opencv-practice **Repository Path**: wyym84/opencv-practice ## Basic Information - **Project Name**: opencv-practice - **Description**: This project is the output of the OpenCV study. - **Primary Language**: Python - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-01 - **Last Updated**: 2025-01-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: practice, OpenCV, example ## README # OpenCV Practice This project is the output of the OpenCV study. It includes a Jupyter Notebook containing the brief description of the OpenCV basic functionalities, APIs and classes for quick revision and search. There are also several examples included in this project using these APIs and classes for practice. The study is based on OpenCV-Python 4.10.0.84. All the examples are tested and could be executed properly under Python 3.11.9 and OpenCV-Python 4.10.0.84. To run the code snippet in Jupyter Notebook and the examples, you need to install Python3 first. And then use below commands to prepare the execution environment: ```bash # Linux python3 -m venv "" "/bin/python3" -m pip install "opencv-python==4.10.0.84" ``` or ```powershell # Windows python -m venv "" "/Scripts/python.exe" -m pip install "opencv-python==4.10.0.84" ```