https://google.github.io/mediapipe/getting_started/install#installing-on-windows
위 페이지를 참고하여 윈도우10 환경에 mediapipe를 설치할 것임
참고로 파이썬 딥러닝 환경은 구축되어 있는 상태
1. MSYS2를 설치하고 환경변수를 설정
'C:\msys64' 위치에 MSYS2가 설치 후
%PATH% 환경 변수에 'C:\msys64\usr\bin' 추가
2. MSYS2 열고,
$ pacman -S git patch unzip
3. 파이썬 설치 후 환경변수 설정
python 3.7.6 설치되어 있음
4. visual C++ Build Tools 2019와 WinSDK 설치
되어 있으니 패스
5. Bazel 설치(2.0 혹은 그보다 높은 버전)
https://docs.bazel.build/versions/master/install-windows.html
bazel version
6. Bazel 변수 설정
cmd
# Find the exact paths and version numbers from your local version.
C:\> set BAZEL_VS=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools
C:\> set BAZEL_VC=C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC
C:\> set BAZEL_VC_FULL_VERSION=14.25.28610
C:\> set BAZEL_WINSDK_FULL_VERSION=10.1.18362.1
7. mediapipe.git cloning
anaconda prompt를 열고 가상환경 활성화 후
git clone https://github.com/google/mediapipe.git
8. OpenCV 설치
opencv 4.1.2.30 설치되어 있음
9. Hello World example 실행
pycharm console 혹은 anaconda prompt
bazel build -c opt --define MEDIAPIPE_DISABLE_GPU=1 --action_env PYTHON_BIN_PATH="본인의 파이썬 루트/python.exe" mediapipe/examples/desktop/hello_world
set GLOG_logtostderr=1
bazel-bin\mediapipe\examples\desktop\hello_world\hello_world.exe
아주 잘 출력됨
'Deep Learning & Computer Vision' 카테고리의 다른 글
2. 목표설정하기-단일 실수 평가 기준, 최적화 척도 만족시키기 (Andrew Ng이 알려주는 ML전략) (0) | 2020.06.10 |
---|---|
1. 머신러닝 전략 개요-직교화 (Andrew Ng이 알려주는 ML전략) (0) | 2020.06.09 |