如何在 cmd 中 运行 时自动删除未检测到面部的图像文件 - FER (python)
How to Auto delete a image file that does not detect the face while running in the cmd - FER (python)
我正在测试 运行ning 深度学习算法 (FER) 和 运行ning 4,000 张图像,速度非常慢,当它无法在命令提示符下识别图像时,它将停止运行ning 并且我必须再次删除图像 -运行 命令提示符。如果无法识别面部表情图像,是否有在命令提示符中自动删除图像的解决方案?
results = k.detect_(image)
stop = timeit.default_timer()
if results == []:
os.remove(content_image_path)
print("This file is deleted:",content_image_path)
else:
//使用if语句及以下
我正在测试 运行ning 深度学习算法 (FER) 和 运行ning 4,000 张图像,速度非常慢,当它无法在命令提示符下识别图像时,它将停止运行ning 并且我必须再次删除图像 -运行 命令提示符。如果无法识别面部表情图像,是否有在命令提示符中自动删除图像的解决方案?
results = k.detect_(image)
stop = timeit.default_timer()
if results == []:
os.remove(content_image_path)
print("This file is deleted:",content_image_path)
else:
//使用if语句及以下