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.
我在 OpenCV 2.4.1 上,需要检测视频流是否有任何噪音。噪声,例如下图所示的样本帧:
什么可能是检测这些噪音的简单、快速的方法。问题是这种噪音可能是间歇性的、不可预测的并且需要检测
您可以使用简单的图像减法。减去两个连续的帧。求这个结果的平均值。如果它不接近于零,那么你就有了噪音。