44 lines
773 B
Markdown
44 lines
773 B
Markdown
## 功能列表
|
|
|
|
- 生成灰度图
|
|
- 生成黑白图
|
|
- 图片反色
|
|
|
|
## 快速开始
|
|
|
|
1. 安装依赖
|
|
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
2. 运行程序
|
|
|
|
```bash
|
|
# 黑白
|
|
python .\img.py .\color.png -t
|
|
|
|
# 灰度
|
|
python .\img.py .\color.png -g
|
|
|
|
# 反色
|
|
python .\img.py .\color.png -i
|
|
```
|
|
|
|
|
|
## 用法说明
|
|
|
|
```bash
|
|
usage: img.py [-h] [-g | -i | -t] [-o OUTPUT] img
|
|
|
|
positional arguments:
|
|
img input img file name
|
|
|
|
options:
|
|
-h, --help show this help message and exit
|
|
-g, --gray convert color img to gray
|
|
-i, --invert invert color img
|
|
-t, --threshold to produce a black and white image
|
|
-o OUTPUT, --output OUTPUT
|
|
output img file name
|
|
``` |