-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.py
More file actions
25 lines (19 loc) · 752 Bytes
/
test.py
File metadata and controls
25 lines (19 loc) · 752 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
import os
from configparser import ConfigParser
from alicevision import AliceVision
from colmap import Colmap
conf = ConfigParser()
conf.read('config.ini')
# obj = AliceVision('./renders/test_hotdog', './results/test_hotdog_1', conf)
# obj.load()
# obj.print_errors()
# colmap = Colmap('./renders/room_60', './results/test_room_60_colmap', conf, 'config.ini')
# colmap.run()
# alice1 = Colmap('./renders/room_60', './results/test_room_60_colmap_fix_poisson', conf, 'config.ini')
# alice1.run()
# alice2 = AliceVision('./renders/bees', './results/test_bees_uni_alice_fix', conf)
# alice2.run()
# alice = AliceVision('./renders/test_hotdog', './results/test_hotdog_fix', conf)
# colmap.print_errors()
# alice1.print_errors()
# alice2.print_errors()