-
基于并行BP神经网络的面部识别系统:BPNN-Face-Recognition-For-Parallel
资源介绍
基于并行BP神经网络的人脸识别系统
此为并行版的人脸识别系统
并行版请戳:
串行版请戳:
Qt版请戳:
安装依赖
安装MPI
# CentOS
yum -y install openmpi openmpi-devel
# 添加路径
export PATH=$PATH:/usr/lib64/openmpi/bin/
安装libcstl库
git clone https://github.com/activesys/libcstl.git
cd libcstl
# 配置环境,[指定安装路径]
./configure [--prefix=newpath]
# 编译
make
# 安装
make install
# 检查
make check
编译运行
git clone https://github.com/PAC-P2P/BPNN-Face-Recognition-For-Pa