-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
284 additions
and
81 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.idea | ||
__pycache__ | ||
.DS_Store | ||
venv | ||
venv | ||
hilti | ||
output |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
dataset: | ||
path: "evaluation/hilti" | ||
path: "hilti/basement1" | ||
patches: | ||
start: 0 | ||
end: 29 | ||
step: 10 | ||
start: 400 | ||
end: 500 | ||
step: 100 | ||
iterations: 1 | ||
undistortion: | ||
segments: 10 | ||
grid: | ||
voxel_edge_length: 8 | ||
subdividers: | ||
size: 2 | ||
size: 1 | ||
segmenters: | ||
ransac: | ||
threshold: 0.01 | ||
initial_points: 6 | ||
iterations: 5000 | ||
iterations: 300 | ||
backend: | ||
type: "eigen_factor" | ||
parameters: | ||
iterations_number: 5000 | ||
robust_type: HUBER | ||
robust_type: QUADRATIC | ||
output: | ||
visualization_path: "output/hilti/visualization" | ||
optimisation_path: "output/hilti/optimisation" | ||
debug: true | ||
debug: false |
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
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
import slam.pipeline.configuration as configuration_module | ||
import slam.utils.pose_readwriter as pose_readwriter_module | ||
import slam.utils.optimisations_readwriter as optimisations_readwriter_module | ||
import slam.utils.undistortioner as undistortioner_module | ||
from slam.utils.dataset_reader import ( | ||
DatasetReader, | ||
HiltiReader, | ||
KittiReader, | ||
NuscenesReader, | ||
) | ||
from slam.utils.pose_readwriter import * | ||
from slam.utils.optimisations_readwriter import * | ||
from slam.utils.undistortioner import * | ||
|
||
__all__ = (configuration_module.__all__ | ||
+ pose_readwriter_module.__all__ + | ||
["DatasetReader", "HiltiReader", "KittiReader", "NuscenesReader"]) | ||
__all__ = ( | ||
optimisations_readwriter_module.__all__ | ||
+ undistortioner_module.__all__ | ||
+ ["DatasetReader", "HiltiReader", "KittiReader", "NuscenesReader"] | ||
) |
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
Oops, something went wrong.