-
Do you have any activity for using your algorithm for detecting face on thermal images?
It is very interesting now especially by Corona, where automatical facial temperature detection
-
Hi, I am just wondering, is there a way to build and use libfacedetection on cpu without avx2? My cpu supports only avx and when i'm building this project with -DENABLE_AVX2=OFF, build craches with t…
-
-
在VS2017和opencv4.0.0 release x64,摄像头画面分辨率640*480,执行一次人脸检测facedetect_cnn大概需要400ms,请问怎么提升速度?
-
-
Hi, may I ask what is the training data for the model? Wider Face train and validation sets?
-
系统环境:
centos7
执行步骤:
mkdir build; cd build; rm -rf *
cmake ..
make
报错:
`error: must #include before using typeid if (typeid(signed char) != typeid(T))`
-
In facedetectcnn.cpp line 114
int sumarray[8];
should be:
__attribute__((__aligned__(32))) int sumarray[8];
so that the _mm256_store_si256() call on line 131 receives a 32-byte aligned a…
-
于老师,您的检测结果有个angle= p[5], 这个angle本身表示的含义是什么呢,
for (int i = 0; i < num_faces; i++)
{
short * p = ((short*)(result_buffer + 4)) + 142 * i;
p[0] = (short)faces[i].x;
p[1] …
-
请教是如何将一个深度学习模型转化为c++代码的? 我们有很多模型在产品化的过程中十分需要这样的方式! 谢谢!