Files
gzhu-cv-experiment/README.md

39 lines
840 B
Markdown
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# CV Experiment
这是一个计算机视觉实验项目包含多个实验的Jupyter Notebook文件。
## 文件说明
- `1-5.ipynb`: 实验1-5的Notebook
- `3-3.ipynb`: 实验3-3的Notebook
- 图像文件: 包含一些测试图像如Lena.bmp, rice.png等用于实验处理
## 如何运行
1. 确保安装了Python和Jupyter Notebook
2. 打开终端,导航到项目目录
3. 运行 `jupyter notebook` 启动Jupyter服务器
4. 在浏览器中打开相应的.ipynb文件
## 依赖
请检查Notebook中的导入语句通常需要
- numpy
- matplotlib
- pillow
- scikit-image
可以使用以下命令安装依赖:
```
pip install -r requirements.txt
```
或手动安装:
```
pip install numpy matplotlib pillow scikit-image
```
## 注意事项
- 确保图像文件路径正确
- 实验结果可能因环境而异