caffe_src_LandMark(5pt)_vs2013

所属分类:模式识别(视觉/语音等)
开发工具:Visual C++
文件大小:42987KB
下载次数:6
上传日期:2016-08-23 09:28:58
上 传 者sunjunlishi
说明:  是github上的开源的人脸关键点定位,5点。用vs2013编译,我把整个依赖打包,因此你可以直接编译
(The key point is the human face of the open source positioned on github, 5:00. With vs2013 compiler, I rely on the whole package, so you can compile)

文件列表:
caffeEx (0, 2016-08-23)
caffeEx\boost_1_57_0 (0, 2016-08-22)
caffeEx\boost_1_57_0\boost (0, 2016-08-22)
caffeEx\boost_1_57_0\boost\algorithm (0, 2016-08-22)
caffeEx\boost_1_57_0\boost\algorithm\clamp.hpp (7669, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11 (0, 2016-08-22)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\all_of.hpp (3002, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\any_of.hpp (2891, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\copy_if.hpp (5561, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\copy_n.hpp (1528, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\find_if_not.hpp (2161, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\iota.hpp (2297, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\is_partitioned.hpp (2171, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\is_permutation.hpp (8472, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\is_sorted.hpp (10927, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\none_of.hpp (2872, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\one_of.hpp (2802, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\partition_copy.hpp (3213, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx11\partition_point.hpp (2333, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx14 (0, 2016-08-22)
caffeEx\boost_1_57_0\boost\algorithm\cxx14\equal.hpp (4014, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx14\is_permutation.hpp (3902, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\cxx14\mismatch.hpp (2600, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\gather.hpp (4047, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\hex.hpp (10321, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\minmax.hpp (1253, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\minmax_element.hpp (17459, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\searching (0, 2016-08-22)
caffeEx\boost_1_57_0\boost\algorithm\searching\boyer_moore.hpp (11136, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\searching\boyer_moore_horspool.hpp (8351, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\searching\detail (0, 2016-08-22)
caffeEx\boost_1_57_0\boost\algorithm\searching\detail\bm_traits.hpp (4292, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\searching\detail\debugging.hpp (837, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\searching\knuth_morris_pratt.hpp (10354, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\string (0, 2016-08-22)
caffeEx\boost_1_57_0\boost\algorithm\string.hpp (1061, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\string\case_conv.hpp (6169, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\string\classification.hpp (11642, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\string\compare.hpp (6373, 2014-03-31)
caffeEx\boost_1_57_0\boost\algorithm\string\concept.hpp (2344, 2014-03-31)
... ...

caffe-ex ======== 利用 mini-caffe 在 Windows VS 开发测试 Caffe 相关项目。 ### mini-caffe 安装 参考 mini-caffe 安装文档,编译生成 mini-caffe 依赖的第三方库。 ### 工程配置(参考本项目) 由于目前的静态库局限性和为调试代码的方便性(顺便学习 Caffe 源码),我们将 mini-caffe 作为工程项目的子项目(如果你做版本控制就将 mini-caffe 作为本 git 项目的子 git 项目存在,不然就直接拷贝一份到现在的工程目录下),直接参与整个工程的构建。具体配置可参考本项目。 ``` git submodule add https://github.com/luoyetx/mini-caffe.git mini-caffe ``` 可以将 mini-caffe 作为当前git项目的子项目,方便后期更新 mini-caffe 的代码。 假设当前项目为 caffe-ex,我们设置源码目录树如下: ``` + caffe-ex |__CMakeLists.txt |__mini-caffe | |__*** | |__mini-caffe.cmake | |__*** | |__ex.cpp |__ex.hpp |__main.cpp |__*** ``` caffe-ex 的 CMakeLists.txt 写法参考本项目。生成工程文件便可以开始开发了。 ### 注意事项 MSVC 会优化静态库的静态变量(程序中没有显示的引用相关变量),导致 Caffe 中的 Layer 动态加载机制失效,我们对 VS 做如下修改。 ![](fix.png)

近期下载者

相关文件


收藏者