颜色数量
from ascript.ios.screen import CountingColor
从屏幕中找到指定颜色的数量
- 方法
CountingColor(self, colors: str, rect: tuple = None, diff: tuple = (5, 5, 5), image: Image.Image = None,
image_file=None)
- 参数
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
colors | str | 是 | 颜色参数,用图色工具生成 |
rect | list | 否 | 圈定屏幕范围 |
diff | int | 否 | 偏色,默认(5,5,5) 分别代表RGB 三个通道的色差,每个值在0-255之间 |
rgb | list | 否 | rgb找色 |
image | Image.Image | 否 | 要识别的图片,默认全屏幕截图 |
image_file | file | 否 | 要识别的图片文件地址,和image图片只能生效一个 |
- 示例
from ascript.ios.screen import CountingColor
res = CountingColor("#EEF0B9|#FFFFFF|#46332D|#A0847B").find()
print(res)