📝Docs: [Lab-1] Completed

This commit is contained in:
2025-11-02 13:36:05 +08:00
parent 5645ebc7d3
commit f2aa426d7f
+21 -1
View File
@@ -2,4 +2,24 @@
🧐 2025 秋季 计算机视觉实验
- **实验一** 基于 Python 的 opencv 数字图像处理的函数
## **实验一** 基于 Python 的 opencv 数字图像处理的函数
### 使用python-opencv中的imread函数载入图片;
`Lab-1/src/read_img.py`
### 使用python-opencv中的imshow和waitKey函数显示图片;
`Lab-1/src/show_img.py`
### 使用python-opencv中的imwrite函数保存图像;
`Lab-1/src/save_img.py`
### 创建和复制图像;
`Lab-1/src/copy_img.py`
### RGB三通道分离并显示。
`Lab-1/src/rgb_img.py`