- 아래 주소에서 PCL을 다운받아 압축을 푼다. (예 C:\PCL-1.7.2)
https://github.com/PointCloudLibrary/pcl/tree/pcl-1.7.2
-
Boost 1.55.0(boost_1_55_0.zip)をダウンロードしてファイルを解凍する。(C:\boost_1_55_0)
http://www.boost.org/users/history/version_1_55_0.html
https://github.com/boostorg/boost/tree/boost-1.55.0 -
HPC Pack 2012 R2 MS-MPI Redistributable Package - 日本語(MSMPISetup.exe)をダウンロードしてインストールする。
Eigen은 빌드 없이 include만 하면 쓸 수 있는 라이브러리이기 때문에 솔직히 이 방법이 필요하지 않은것 같지만 지정된 경로(Program files)에 카피하기 쉬운 방법인것같다.
- Eigen 3.2.2(eigen-eigen-1306d75b4a21.zip)를 다운받아 압축을 푼다. latest-stable버전을 다운받아도 무방하다.
http://eigen.tuxfamily.org/
https://bitbucket.org/eigen/eigen/downloads/
- FLANN 1.8.4(flann-1.8.4-src.zip)를 다운로드하여 원하는 위치에 압축을 푼다.(예: C:\flann-1.8.4-src)
http://www.cs.ubc.ca/research/flann/#download
https://github.com/mariusmuja/flann
- QHull 2012.1 for Windows(qhull-2012.1.zip)를 다운로드하여 원하는 위치에 압축을 푼다. (예: C:\qhull-2012.1)
http://www.qhull.org/download/
CMake
- VTK 5.10.1(VTK-5.10.1.zip)をダウンロードしてファイルを解凍する。(C:\VTK-5.10.1)
http://www.vtk.org/VTK/resources/software.html#previous
https://github.com/Kitware/VTK/tree/v5.10.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# fetch_nike_puls_all_activities.bash | |
# A simple bash script to fetch all activities and metrics from NikePlus. | |
# See `nike_plus_api.md` for the API details. | |
readonly bearer_token="$1" | |
if [[ -z "$bearer_token" ]]; then | |
echo "Usage: $0 bearer_token" | |
exit |