如何自动删除在CMD -FER运行时未检测到面部的图像文件(Python)

发布于 2025-01-23 09:56:50 字数 126 浏览 0 评论 0原文

我正在测试运行深度学习算法(FER)并运行4,000张图像,并且速度非常慢,并且当它在命令提示符中无法识别图像时,它将停止运行,我必须再次删除图像重新运行命令提示符。如果命令提示符无法识别面部表达图像,是否可以在命令提示符中自动删除图像?

I was test running an deep learning algorithm (FER) and running 4,000 images and the speed is very slow and when it cant recognise an image in the command prompt it will stop running and I have to delete the image re-run the command prompt again. Is there a solution to auto delete a image in the command prompt if it cant recognise the facial expression image?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落日海湾 2025-01-30 09:56:50
  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语句及以下

  results = k.detect_(image)
        stop = timeit.default_timer()
        if results == []:
            os.remove(content_image_path)
            print("This file is deleted:",content_image_path)
        else:

//use the if statement and below

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文