姿势估计实验-Realtime_Multi-Person_Pose_Estimation-CMU
前言:
论文及源代码网址:
https://github.com/ZheC/Realtime_Multi-Person_Pose_Estimation
地址2:
https://github.com/CMU-Perceptual-Computing-Lab/openpose/blob/master/doc/installation.md
1. 一个失败的尝试
首先是跑一个例子试试,使用
https://github.com/CMU-Perceptual-Computing-Lab/openpose/
按照作者的指导,如下:
Training Steps
- Run
cd training; bash getData.shto obtain the COCO images indataset/COCO/images/, keypoints annotations indataset/COCO/annotations/and COCO official toolbox indataset/COCO/coco/.- 这里建议开screen,因为要下载超级久
- Run
getANNO.min matlab to convert the annotation format from json to mat indataset/COCO/mat/. - Run
genCOCOMask.min matlab to obatin the mask images for unlabeled person. You can use 'parfor' in matlab to speed up the code.- 注意修改Matlab程序中的路径,在 im = imread(['dataset/COCO/', img_paths]);的COCO后面加上images/,原程序有点问题
- 这里尝试开启了一下并行运算,速度特别快,将代码中第二个for循环改为parfor i = 1:L,然后使用Matlab的时候,先输入matlabpool open,然后再运行程序。关闭的方法为matlabpool close
- 然后遇到了Subscripted assignment between dissimilar structures.问题,看代码也没有找到问题,参考 [1]
- Run
genJSON('COCO')to generate a json file indataset/COCO/json/folder. The json files contain raw informations needed for training. - Run
python genLMDB.pyto generate your LMDB. (You can also download our LMDB for the COCO dataset (189GB file) by:bash get_lmdb.sh) - Download our modified caffe: caffe_train. Compile pycaffe. It will be merged with caffe_rtpose (for testing) soon.
- Run
python setLayers.py --exp 1to generate the prototxt and shell file for training. - Download VGG-19 model, we use it to initialize the first 10 layers for training.
- Run
bash train_pose.sh 0,1(generated by setLayers.py) to start the training with two gpus.
2. 安装Caffe
这种跑一个例子失败之后,
转而使用最根本的方法从头按照步骤编译,不走捷径:参考下面的网址
因为电脑里已经安装过caffe的依赖环境了,所以把caffe编译一下就可以用了,参考下面的话 [3]
### Install Caffe ###
cd 3rdparty/caffe/
# Select your desired Makefile file (run only one of the next 4 commands)
cp Makefile.config.Ubuntu14_cuda7.example Makefile.config # Ubuntu 14, cuda 7
cp Makefile.config.Ubuntu14_cuda8.example Makefile.config # Ubuntu 14, cuda 8
cp Makefile.config.Ubuntu16_cuda7.example Makefile.config # Ubuntu 16, cuda 7
cp Makefile.config.Ubuntu16_cuda8.example Makefile.config # Ubuntu 16, cuda 8
# Change any custom flag from the resulting Makefile.config (e.g. OpenCV 3, Atlas/OpenBLAS/MKL, etc.)
# Compile Caffemake all -j${number_of_cpus} && make distribute -j${number_of_cpus}
比如make all -j16(使用16个CPU同时运行) 3. 安装 OpenPose
cd ../../models/
bash ./getModels.sh # It just downloads the Caffe trained models
cd ..
# Same file cp command as the one used for Caffe
cp ubuntu/Makefile.config.Ubuntu14_cuda7.example Makefile.config
# Change any custom flag from the resulting Makefile.config (e.g. OpenCV 3, Atlas/OpenBLAS/MKL, etc.)
make all -j${number_of_cpus}
一定要严格按照顺序(实验室服务器用的是zsh,所以注意替换bash为zsh)
如果使用OpenCV 3版本的话,可以通过所有make,但是不能运行实际的例子
按照作者在某个Issue下的回答,应该使用OpenCV2.4,然后折腾很久,见另一篇博客 [7]
然后出现无法make,错误中关键行为这个
../lib/libcaffe.so: undefined reference to cv::imread(cv::String const&, int)'
搜索之后得到解答:[4]
open your Makefile with some text editor, locate line 164 (in my case), add opencv_imgcodecs behind.
LIBRARIES += glog gflags protobuf leveldb snappy \
lmdb boost_system hdf5_hl hdf5 m \
opencv_core opencv_highgui opencv_imgproc opencv_imgcodecs
在vim里使用
:se nu
然后回车,可以显示行号;使用
/opencv
可以快速定位到第一个出现的opencv字符串的位置
添加后可以make了,然后不出意料的还是不能运行实际的例子:
4. 运行一个例子
实际例子运行方法:[3]
1. Running on Video
# Ubuntu
./build/examples/openpose/openpose.bin --video examples/media/video.avi
# With face and hands
./build/examples/openpose/openpose.bin --video examples/media/video.avi --face --hand
会出现
zsh: abort (core dumped) ./build/examples/openpose/openpose.bin --video examples/media/video.avi
再试试别的运行方法:
3. Running on Images
# Ubuntu
./build/examples/openpose/openpose.bin --image_dir examples/media/
# With face and hands
./build/examples/openpose/openpose.bin --image_dir examples/media/ --face --hand
会出现
Starting pose estimation demo.
Error:
boost::filesystem::directory_iterator::construct: No such file or directory
Coming from:
- src/openpose/utilities/fileSystem.cpp:getFilesOnDirectory():186
- src/openpose/producer/imageDirectoryReader.cpp:getImagePathsOnDirectory():25
- src/openpose/utilities/flagsToOpenPose.cpp:flagsToProducer():133
terminate called after throwing an instance of 'std::runtime_error'
what():
Error:
boost::filesystem::directory_iterator::construct: No such file or directory
Coming from:
- src/openpose/utilities/fileSystem.cpp:getFilesOnDirectory():186
- src/openpose/producer/imageDirectoryReader.cpp:getImagePathsOnDirectory():25
- src/openpose/utilities/flagsToOpenPose.cpp:flagsToProducer():133
zsh: abort (core dumped) ./build/examples/openpose/openpose.bin --image_dir examples/media/
然后搜索后,根据 [5] DuinoDu的回答,去 [6] 里找答案,“install boost from src.”
根据user3715812的回答,输入以下命令行来安装BOOST:
wget -O boost_1_55_0.tar.gz http://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.tar.gz/download
tar xzvf boost_1_55_0.tar.gz
cd boost_1_55_0/ ./bootstrap.sh --prefix=/usr/local // 这里改成自己想要安装到的目录
./b2
./b2 install // 没有SUDO权限但是也可以
然后再去运行
./build/examples/openpose/openpose.bin --image_dir examples/media/
这次的报错和上次不一样了,是
Starting pose estimation demo.
Auto-detecting GPUs... Detected GPU(s), using them all.
Starting thread(s)
: cannot connect to X server
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Curand generator. Curand won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Curand generator. Curand won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Curand generator. Curand won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Curand generator. Curand won't be available.
F0819 ::53.031266 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting downF0819 ::53.031266 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting downF0819 ::53.035267 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting down
*** Check failure stack trace: ***
E0819 ::53.031266 common.cpp:] Cannot create Cublas handle. Cublas won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Curand generator. Curand won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Curand generator. Curand won't be available.
E0819 ::53.031266 common.cpp:] Cannot create Curand generator. Curand won't be available.
F0819 ::53.031266 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting downF0819 ::53.031266 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting downF0819 ::53.035267 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting downF0819 ::53.035267 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting downF0819 ::53.035267 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting downF0819 ::53.035267 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting down
*** Check failure stack trace: ***
F0819 ::53.031266 common.cpp:] Check failed: error == cudaSuccess ( vs. ) driver shutting down
zsh: abort (core dumped) ./build/examples/openpose/openpose.bin --image_dir examples/media/
然后在GITHUB 的ISSUE区准备提问的时候,根据提示
Note: add
--logging_level 0to get higher debug information.
在运行的命令行后加上了这个,即:
./build/examples/openpose/openpose.bin --image_dir examples/media/ --logging_level
于是得到了较为准确的信息:

可以理解为又一个图形界面要展示但是出不来 [8](X server相关),
查阅资料后根据 [9] 的xiaoyan的回答:
Add "export DISPLAY=your ip:0.0" in ~/.bashrc, source ~/.bashrc (ip is your host IP, where you wanna display plots or things like that. If you are using Windows, cmd-ipconfig, find your IP).
于是不再出现X server问题了,出现了下图的问题

找了好久没找到问题,最后求助了组里的史博士,这里表示非常感谢!!!
原因是这个Demo默认使用所有探测到的CUDA 设备,而实验室的CUDA设备还有很多人在用,这会造成问题(可能是冲突或者资源不够,或者不被允许个人使用这么多个?)
所以在运行的命令行前面要加上一定的限制:
CUDA_VISIBLE_DEVICES= ./build/examples/openpose/openpose.bin --net_resolution "160x80" --video examples/media/video.avi
使得被探测到的设备数量只有两个。
然后发现还是运行不了,为什么呢?
因为OS X上的SHELL并不具备显示远程窗口的功能,
所以在史博士的推荐下使用了MobaXterm(在WIN10下),然后就成功了,因为这个软件直接内置了X server的接口
更新:如果想在Mac上运行,可以参考
[10] http://blog.csdn.net/dobell/article/details/55047811
安装XQuartz,
https://www.xquartz.org
按说明安装好 打开 mac terminal
ssh -X {用户名}@{远程端ip}; (注意大写的X)
这次就可以了
实际运行截图如下:

你也可以读一下我在GITHUB上的提问:
https://github.com/CMU-Perceptual-Computing-Lab/openpose/issues/184可能会有帮助
另外:
因为实验室的服务器出于安全考虑不允许使用
sudo pip install
, 所以使用
pip install --user
来替代。[2]
参考文献:
[1] http://www.cnblogs.com/emituofo/archive/2011/11/13/2247523.html
[2] https://stackoverflow.com/questions/31512422/pip-install-r-oserror-errno-13-permission-denied
[3] https://github.com/CMU-Perceptual-Computing-Lab/openpose/blob/master/doc/installation.md
[4] https://github.com/BVLC/caffe/issues/1276
[5] https://github.com/CMU-Perceptual-Computing-Lab/openpose/issues/17
[6] https://stackoverflow.com/questions/12578499/how-to-install-boost-on-ubuntu
[7] http://www.cnblogs.com/QingHuan/p/7278357.html
[8] http://www.cnblogs.com/super119/archive/2010/12/18/1910065.html
[9] https://askubuntu.com/questions/571116/cannot-connect-to-x-server-error
[10] http://blog.csdn.net/dobell/article/details/55047811
姿势估计实验-Realtime_Multi-Person_Pose_Estimation-CMU的更多相关文章
- 从DeepNet到HRNet,这有一份深度学习“人体姿势估计”全指南
从DeepNet到HRNet,这有一份深度学习"人体姿势估计"全指南 几十年来,人体姿态估计(Human Pose estimation)在计算机视觉界备受关注.它是理解图像和视频 ...
- 人体姿态和形状估计的视频推理:CVPR2020论文解析
人体姿态和形状估计的视频推理:CVPR2020论文解析 VIBE: Video Inference for Human Body Pose and Shape Estimation 论文链接:http ...
- 快速人体姿态估计:CVPR2019论文阅读
快速人体姿态估计:CVPR2019论文阅读 Fast Human Pose Estimation 论文链接: http://openaccess.thecvf.com/content_CVPR_201 ...
- 手势估计- Hand Pose Estimation
http://blog.csdn.net/myarrow/article/details/51933651 1. 目前进展 1.1 相关资料 1)HANDS CVPR 2016 2 ...
- AB实验的高端玩法系列2 - 更敏感的AB实验, CUPED!
背景 AB实验可谓是互联网公司进行产品迭代增加用户粘性的大杀器.但人们对AB实验的应用往往只停留在开实验算P值,然后let it go...let it go ... 让我们把AB实验的结果简单的拆解 ...
- AB实验的高端玩法系列3 - AB组不随机?观测试验?Propensity Score
背景 都说随机是AB实验的核心,为什么随机这么重要呢?有人说因为随机所以AB组整体不存在差异,这样才能准确估计实验效果(ATE) \[ ATE = E(Y_t(1) - Y_c(0)) \] 那究竟随 ...
- Paper慢慢读 - AB实验人群定向 Recursive Partitioning for Heterogeneous Casual Effects
这篇是treatment effect估计相关的论文系列第一篇所以会啰嗦一点多给出点背景. 论文 Athey, S., and Imbens, G. 2016. Recursive partition ...
- 3D深度估计
3D深度估计 Consistent Video Depth Estimation 论文地址:https://arxiv.org/pdf/2004.15021.pdf 项目网站:https://roxa ...
- 论文阅读笔记(一)FCN
本文先对FCN的会议论文进行了粗略的翻译,使读者能够对论文的结构有个大概的了解(包括解决的问题是什么,提出了哪些方案,得到了什么结果).然后,给出了几篇博文的连接,对文中未铺开解释的或不易理解的内容作 ...
随机推荐
- js-input框中写入的小写小写字母全部转换成大写字母的js代码
<input type="text" id="blinitials" name="blinitials" onkeyup=" ...
- vs2015调试iisexpress无法启动的问题解决方案整理
我上传的项目代码被同事下载之后使用iisexpress调试一直报错,iisexpress无法启动只能用自己本地的iis,我本地的代码却没问题,试了两种解决办法,问题解决了,在此记录一下也总结一下 方法 ...
- SSM Mybatis将新增数据写入数据库时出现的500状态码:Error updating database.的可能
关于maven下ssm整合的项目推荐这篇博客:https://www.cnblogs.com/yiye/p/5969157.html 今日在ssm下的将新增数据写回数据库时遇到不少的问题,现作记录 如 ...
- [Hibernate] official tutorial - userguide
Persistence contexts org.hibernate.Session API and javax.persistence.EntityManager API represent a c ...
- 20165309 2017-2018-2《Java程序设计》课程总结
20165309 2017-2018-2<Java程序设计>课程总结 一.每周作业链接汇总 预备作业1:我期望的师生关系 预备作业2:技能学习经验与C语言 预备作业3:Linux安装及学习 ...
- CSS设置表格TD宽度布局
使用表格布局时,对单元格的宽度控制很伤脑筋,所以查阅资料整理如下: 一.表格布局table-layout 语法: table-layout : auto | fixed 取值: auto : 大多数 ...
- 把旧系统迁移到.Net Core 2.0 日记 (20) --使用MiniProfiler for .NET
要查看页面耗时,EFCore的性能. 安装 MiniProfiler.AspNetCore.Mvc 还有 MiniProfiler.EntityFrameworkCore Install-Packa ...
- Electron "jQuery/$ is not defined" 解决方法
参考问题:https://stackoverflow.com/questions/32621988/electron-jquery-is-not-defined <!-- Insert this ...
- 基于 HTML5 的工业组态高炉炼铁 3D 大屏可视化
前言 在大数据盛行的现在,大屏数据可视化也已经成为了一个热门的话题.大屏可视化可以运用在众多领域中,比如工业互联网.医疗.交通.工业控制等等.将各项重要指标数据以图表.各种图形等形式表现在一个页面上, ...
- python全局变量
定义函数里面的叫局部变量,出了函数外面就不能用了 局部变量函数被调用时,他的变量才生效 局部变量定义在内存里面,用完就会被释放,全局变量不会释放 当有相同名的局部变量和全局变量,函数会先找自己的变量, ...