Binbin Xu(徐彬彬)
Binbin Xu(徐彬彬)
same error, change `-std=c++11` to `-std=c99` or add `std=c99` in `extra_compile_args` causes another error: ``` $ python setup.py install generating build/warpctc_pytorch/_warp_ctc/__warp_ctc.c regenerated: 'build/warpctc_pytorch/_warp_ctc/__warp_ctc.c' running install running bdist_egg running egg_info creating...
the above problem was caused by myself, the source code is `extra_link_args=['-Wl,-rpath,' + os.path.realpath(warp_ctc_path)]` at some point I change it to `extra_link_args=['-Wl,-rpath' + os.path.realpath(warp_ctc_path)]` by accident, so the compilation failed.
please wait, let me verify this!
Hi, I just clone the codes to a new folder, and run the program(without changing anything), the output is below, I just run 3 stages, it seems the error is...
My machine is 8-core(the program is running in 8 threads at the same time), but the codes should be OK with 24 threads. Off course, may be there are something...
Hi, before running, set `params.local_features_num_ = 400 or 500`, 200 may be too small, and it won't effect the running time, for linear regression takes about 80% training time
sometimes, for the same image, opencv's(even using the same version) face detector will give different results.
I have written in README.md - The paper claims for 3000fps for very high frame rates for different parameters, while my implementation can achieve **several hundreds** frame rates. What you...
initial_guess是我们最开始认为的人脸关键点的位置,一般就是mean shape做最初始的guess,然后一步一步去调整各个点的位置,往关键点真正的坐标位置移动(这个词不是那么贴切),guess多一点就是增加模型的鲁棒性 getsimilarTransform, 就是我有两个shape A, shape B, 如果我从A变换到B到怎么做,这个函数就是算从A变换到B要转过多少的角度,然后缩小放大的倍数(这两步反一下也没问题)
getsimilarTransform我有英语注释: // get the rotation and scale parameters by transferring shape_from to shape_to, shape_to = M*shape_from 其中M是一个变换矩阵,我们要算的就是M里的值