엔지니어스 - Engineeus

(초.간.단) 오픈포즈 환경 설정 [OpenPose in UBUNTU] 본문

Autonomous Tech./Machine Learning

(초.간.단) 오픈포즈 환경 설정 [OpenPose in UBUNTU]

Engineeus 2021. 5. 14. 16:46
728x90

설치 전 기존 이론 공부 하실 분들은 아래를 참고하세요~! 알고 접하면 더욱 더욱 이해가 쉽습니다.

mickael-k.tistory.com/152?category=798521

 

 

환경설정


 

cmake 다시 설치

  - 사전 설치된 것 삭제: sudo apt purge cmake-qt-gui

  - 재설치: sudo apt-get install qtbase5-dev

  - CMake 는 사이트에서 리눅스용을 다운받고, 압축해제하여 터미널로 해당 폴더로 이동해서 ./configure --qt --gui 실행

  - 아래의 명령이 작동이 안되어서 그 아래의 명령어를 사용했음

  - ./bootstrap && make -j8 && make install -j8

  - ./bootstrap && make -j`nproc` && sudo make install -j`nproc`

  - 에러가 생기는 것은 root 권한으로 실행하면 해결

 

 

git clone https://github.com/CMU-Perceptual-Computing-Lab/openpose

cd openpose

mkdir build

cd build

cmake-gui ..

configure

configure

generate

make -j11

./build/examples/openpose/openpose.bin --video examples/media/video.avi

 

Make sure you already installed 'NVIDIA Graphic Driver, CUDA, CuDNN, OpenCV, Python3'


<environment>
mkdir works
cd works
mkdir openpose
cd openpose


<git clone>
git clone https://github.com/CMU-Perceptual-Computing-Lab/openpose


<build>
cd openpose
mkdir build
cd build
cmake-gui ..


<cmake settings>
Check 'BUILD_PYTHON'
configure
configure
generate


<check this words>
> Configuring done
> Generating done


<build>
make -j 8


<run>
cd ..

(video)
./build/examples/openpose/openpose.bin --video examples/media/video.avi
: 46 FPS on dual gtx1080ti

(webcam)
./build/examples/openpose/openpose.bin --camera 0 --camera_resolution 640x480
: 30.1 FPS on dual gtx1080ti

 

 

 

 

 

 

도움이 되셨다면


이 포스트가 도움이 되셨다면 블로그의 광고 한번 클릭 해주면 감사하겠습니다!! 블로그를 하며 얻는 정말 한달 교통비도 안되는 작은 금액이지만 이점이 포스팅을 하는데 큰 힘이 됩니다^^

 
 
 
 
Comments