Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道在python(或任何其他lib / app)中检测模糊图像的最后技术?
实际上我使用 ffmpeg 从视频中提取帧。这个想法是检查这些提取的帧并删除模糊的帧。
对于问这个问题的人来说,这有点晚了。我在这里找到了一个链接,可以检测图像中的模糊量。
通过使用 OpenCV、Python 和拉普拉斯算子。
使用 OpenCV 进行模糊检测
可能对其他人有用
我不知道有什么库可以做到这一点,但我建议你看看Image gradient。由于模糊图像没有“边缘”,因此模糊图像的梯度值之和低于同一非模糊图像的图像梯度。
我试过这个,效果很好。不完美但还不错。 https://gist.github.com/shahriman/3289170