欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

转:face swapping

程序员文章站 2022-04-16 21:20:57
...

参考:
https://github.com/hrastnik/FaceSwap
https://github.com/matthewearl/faceswap
http://matthewearl.github.io/2015/07/28/switching-eds-with-python/

参考:
http://blog.csdn.net/duan19920101/article/details/51396303

VS中无法解析的外部符号:
_USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent
_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives_

dlib下载后,编译还是比较顺利的,但是使用后,总提示 无法解析的外部符号:
USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent
_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives

看到这个错误简直要崩溃了,找了好久都没有找到正确的解决办法。最后呢当然是解决啦。
解决办法如下:
1、先找到threads文件夹下的threads_kernel_shared.h;
2、将下面这段代码注释掉就可以了:
//#ifdef ENABLE_ASSERTS  
//    extern int USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives;  
//    inline int dlib_check_consistent_assert_usage() { USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives = 0; return 0; }  
//#else  
//    extern int USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives_;  
//    inline int dlib_check_consistent_assert_usage() { USER_ERROR__missing_dlib_all_source_cpp_file__OR__inconsistent_use_of_DEBUG_or_ENABLE_ASSERTS_preprocessor_directives_ = 0; return 0; }  
//#endif  
//    const int dlib_check_assert_helper_variable = dlib_check_consistent_assert_usage();  

摄像头捕捉,双人时候可以换头像
转:face swapping