This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstallData.bat
38 lines (31 loc) · 2.08 KB
/
installData.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@echo off
:: Download bag of words vocabulary
echo Download bag of word dictionnaries
curl https://github.com/SolarFramework/SolARModuleFBOW/releases/download/fbowVocabulary/fbow_voc.zip -L -o fbow_voc.zip
echo Unzip bag of word dictionnaries
powershell Expand-Archive fbow_voc.zip -DestinationPath .\data\fbow_voc -F
del fbow_voc.zip
:: Download TUM camera calibration
echo Download TUM camera calibration
curl https://repository.solarframework.org/generic/captures/singleRGB/TUM/tum_camera_calibration.json -L -o data/tum_camera_calibration.json
:: Download TUM video for testing relocalization
echo Download TUM video for testing relocalization
curl https://repository.solarframework.org/generic/captures/singleRGB/TUM/rgbd_dataset_freiburg3_long_office_household_relocalization.avi -L -o data/rgbd_dataset_freiburg3_long_office_household_relocalization.avi
:: Download TUM map for testing relocalization
echo Download TUM map for testing relocalization
curl https://repository.solarframework.org/generic/maps/TUM/freiburg3_long_office_household/map_win_0_10_0.zip -L -o map.zip
echo Unzip Map
powershell Expand-Archive map.zip -DestinationPath .\data -F
del map.zip
:: Download AR device captures
echo Download and install AR device captures
curl https://repository.solarframework.org/generic/captures/hololens/bcomLab/loopDesktopA.zip -L -o loopDesktopA.zip
powershell Expand-Archive loopDesktopA.zip -DestinationPath .\data\data_hololens -F
del loopDesktopA.zip
curl https://repository.solarframework.org/generic/captures/hololens/bcomLab/loopDesktopB.zip -L -o loopDesktopB.zip
powershell Expand-Archive loopDesktopB.zip -DestinationPath .\data\data_hololens -F
del loopDesktopB.zip
curl https://repository.solarframework.org/generic/captures/hololens/bcomLab/hololens_vlclf_marker.zip -L -o hololens_vlclf_marker.zip
powershell Expand-Archive hololens_vlclf_marker.zip -DestinationPath .\data\data_hololens\hololens_vlclf_marker -F
del hololens_vlclf_marker.zip
curl https://repository.solarframework.org/generic/captures/hololens/hololens_calibration.json -L -o .\data\data_hololens\hololens_calibration.json