当前位置: 首页 > news >正文

论文复现--关于多视角动作捕捉工具箱 --XRMoCap的研究

分类:动作捕捉
github地址:https://github.com/openxrlab/xrmocap
所需环境:
Ubuntu18.04,conda22.9.0,CUDA11.4

目录

  • 环境配置

在这里插入图片描述

环境配置

conda create -n XRmocap python=3.7 -y
conda activate XRmocap# install ffmpeg for video and images
conda install -y ffmpeg# install pytorch
conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.3 -c pytorch -y# install pytorch3d
conda install -y -c fvcore -c iopath -c conda-forge fvcore iopath
conda install -y -c bottler nvidiacub
conda install -y pytorch3d -c pytorch3d# install mmcv-full
pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu113/torch1.12.1/index.html# install minimal_pytorch_rasterizer
pip install git+https://github.com/rmbashirov/minimal_pytorch_rasterizer.git# install xrprimer
pip install xrprimer# install mmhuman3d
pip install git+https://github.com/open-mmlab/mmhuman3d.git###¥¥¥¥##¥#¥#¥#¥#¥#¥#¥
# install cudnn for mmdeploy
apt-get update && apt-get install -y --no-install-recommends \libcudnn8=8.2.4.15-1+cuda11.4 \libcudnn8-dev=8.2.4.15-1+cuda11.4 \&& apt-mark hold libcudnn8 && \rm -rf /var/lib/apt/lists/*
# install TensorRT for mmdeploy, please get TensorRT from nvidia official website
cd /opt && \tar -xzvf TensorRT-8.2.3.0.Linux.x86_64-gnu.cuda-11.4.cudnn8.2.tar.gz && \rm TensorRT-8.2.3.0.Linux.x86_64-gnu.cuda-11.4.cudnn8.2.tar.gz && \cd TensorRT-8.2.3.0/python && \pip install tensorrt-8.2.3.0-cp38-none-linux_x86_64.whl && \
# install mmdeploy and build ops
cd /opt && \conda install cmake && \git clone https://github.com/open-mmlab/mmdeploy.git && \cd mmdeploy && \git reset --hard 1b048d88ca11782de1e9ebf6f9583259167a1d5b && \pip install -e . && \mkdir -p build && cd build && \cmake -DCMAKE_CXX_COMPILER=g++ -DMMDEPLOY_TARGET_BACKENDS=trt \-DTENSORRT_DIR=/opt/TensorRT-8.2.3.0 \-DCUDNN_DIR=/usr/lib/x86_64-linux-gnu .. && \make -j$(nproc) && make install && \make clean# clone xrmocap
git clone https://github.com/openxrlab/xrmocap.git
cd xrmocap# install requirements for build
pip install -r requirements/build.txt
# install requirements for runtime
pip install -r requirements/runtime.txt
# install requirements for services
pip install -r requirements/service.txt# install xrmocap
rm -rf .eggs && pip install -e .
http://www.lryc.cn/news/124195.html

相关文章:

  • Spring Profile与PropertyPlaceholderConfigurer实现项目多环境配置切换
  • ansible入门
  • 用Node.js吭哧吭哧撸一个运动主页
  • 【C++】STL---vector
  • 机器学习:基本介绍
  • 基于长短期神经网络LSTM的碳排量预测,基于LSTM的碳排放量预测
  • 日常BUG——SpringBoot关于父子工程依赖问题
  • Zabbix监控tomcat
  • CentOS-6.3安装MySQL集群
  • 项目管理的艺术:掌握成本效益分析
  • 护眼灯值不值得买?什么护眼灯对眼睛好
  • 【设备树笔记整理4】内核对设备树的处理
  • 算法通关村第七关——递归和迭代实现二叉树前中后序遍历
  • Datawhale Django后端开发入门Task01 Vscode配置环境
  • django部署到centos服务器上
  • IOS开发-XCode14介绍与入门
  • Interactive Marker Publish Pose All the Time (Interactive Marker通过topic一直发送其状态)
  • 前后端分离------后端创建笔记(04)前后端对接
  • 一站式自动化测试平台-Autotestplat
  • Ansible Service模块,使用 Ansible Service模块进行服务管理
  • 共识算法初探
  • Oracle查询表字段名并拼接
  • 8 张图 | 剖析 Eureka 的首次同步注册表
  • github ssh配置
  • c51单片机串口通信(中断方式接收数据)(单片机--单片机通信)示例代码 附proteus图
  • 腾讯面试题算法还原【游戏安全】
  • vue + less 实现动态主题换肤功能
  • matlab使用教程(15)—图论基础
  • 【量化课程】02_4.数理统计的基本概念
  • 【计算机视觉|生成对抗】改进的生成对抗网络(GANs)训练技术