error: the following arguments are required: -p/--shape_predictor_68_face_landmarks.dat, -i/--Image.jpeg
时间: 2023-09-11 19:04:21 浏览: 175
这个错误提示是因为你运行的命令缺少必要的参数。其中 `-p/--shape_predictor_68_face_landmarks.dat` 是一个人脸关键点检测器的模型文件路径,`-i/--Image.jpeg` 是需要进行人脸关键点检测的图像文件路径。你需要在运行命令时指定这两个参数,例如:
```
python detect_face_landmarks.py -p shape_predictor_68_face_landmarks.dat -i Image.jpeg
```
其中 `shape_predictor_68_face_landmarks.dat` 和 `Image.jpeg` 需要替换为你实际使用的文件路径。
相关问题
usage: detect_face_parts.py [-h] -p SHAPE_PREDICTOR -i IMAGE detect_face_parts.py: error: the following arguments are required: -p/--shape-predictor
这是一个关于 Python 脚本 detect_face_parts.py 的使用问题,需要提供参数 -p/--shape-predictor 指定形状预测器,以及 -i 指定要处理的图像。你可以在命令行中输入正确的参数来运行这个脚本。
usage: detect_blinks.py [-h] -p SHAPE_PREDICTOR [-v VIDEO] detect_blinks.py: error: the following arguments are required: -p/--shape-predictor
这个错误提示是因为你在运行 detect_blinks.py 脚本时没有指定必需的参数 -p 或 --shape-predictor。你需要在命令行中指定形状预测器的路径,例如:
```
python detect_blinks.py -p shape_predictor_68_face_landmarks.dat
```
其中 `shape_predictor_68_face_landmarks.dat` 是形状预测器文件的路径。请确保你已经下载了形状预测器,并将其路径传递给脚本。如果你需要更多帮助,请参考脚本的文档或者使用 `python detect_blinks.py -h` 命令查看帮助信息。
阅读全文