forked from bastienjacquet/PlaneSweepLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunPinholePlanesweepTestsWindows.bat
More file actions
26 lines (20 loc) · 958 Bytes
/
runPinholePlanesweepTestsWindows.bat
File metadata and controls
26 lines (20 loc) · 958 Bytes
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
@echo off
if exist .\testResults\pinholeCamera (
echo Old results found. They need to be deleted before running the tests again, do you want to delete them?
rmdir /S .\testResults\pinholeCamera
)
if not exist .\testResults\pinholeCamera (
mkdir .\testResults\pinholeCamera
echo Runing pinhole planesweep on the niederdorf1 dataset...
build\bin\Release\pinholePlanesweepTest --dataFolder .\data\pinholeCamera\niederdorf1\
move pinholeTestResults testResults\pinholeCamera\niederdorf1
echo done
echo Runing pinhole planesweep on the niederdorf2 dataset...
build\bin\Release\pinholePlanesweepTest --dataFolder .\data\pinholeCamera\niederdorf2\
move pinholeTestResults testResults\pinholeCamera\niederdorf2
echo done
echo Runing pinhole planesweep on the niederdorf3 dataset...
build\bin\Release\pinholePlanesweepTest --dataFolder .\data\pinholeCamera\niederdorf3\
move pinholeTestResults testResults\pinholeCamera\niederdorf3
echo done
)