您推荐哪种算法用于相机人体检测?在 opencv 中

which algorithm you recommended for human body detection by camera? in opencv

用于无人机四轴飞行器跟踪人体

这个问题取决于很多因素:

  1. 计算资源
  2. 图像质量
  3. 您对算法的期望准确度是多少

顺便说一句,实现这种算法最简单的方法是Cascade Classifier which is implemented in OpenCV. You can train your own model or you can use the trained model which exists in openCV files. This method support three feature types: HOG,LBP and HAAR. The base of this method is paper Viola and Jones发表于2001年。在普通计算机上测试时间接近在线。

如果您需要更准确的方法,您可以尝试基于 DPM(可变形零件模型)的方法。互联网上有许多此方法的发布版本。检测速度差不多2HZ

如果您需要更高的准确性,我建议您继续使用 CNN(卷积神经网络)。当然你需要更多的计算资源(GPU 或高规格 CPU)