Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
run: |
git submodule update --init --recursive
python -m pip install --upgrade pip
python -m pip install --src deps -r requirements.txt
python -m pip install -r requirements.txt

- name: Build
run: python -m pip install -v .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ In this project, we provide interfaces for various geometric operations on 2D/3D
To install the LIMAP Python package:
```
git submodule update --init --recursive
python -m pip install --src deps -r requirements.txt
python -m pip install -r requirements.txt
python -m pip install -Ive .
```
To double check if the package is successfully installed:
Expand Down
4 changes: 2 additions & 2 deletions cfgs/triangulation/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ sfm:
range_robust: [0.05, 0.95]
k_stretch: 1.25
hloc:
descriptor: "superpoint_aachen"
matcher: "NN-superpoint"
descriptor: "aliked-n16"
matcher: "aliked-lightglue"

##############################
# line detection and matching config
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ clang-format==19.1.0
pytlsd@git+https://github.com/iago-suarez/pytlsd.git@4180ab8
deeplsd@git+https://github.com/cvg/DeepLSD.git@88c589d
gluestick@git+https://github.com/cvg/GlueStick.git@7d81673
-e git+https://github.com/cvg/Hierarchical-Localization.git@a3e5731#egg=hloc
hloc@git+https://github.com/cvg/Hierarchical-Localization.git@a3e5731
2 changes: 1 addition & 1 deletion runners/tests/localization.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def main():
cos = np.clip((np.trace(np.dot(R_gt.T, R)) - 1) / 2, -1.0, 1.0)
e_R = np.rad2deg(np.abs(np.arccos(cos)))
log += f"Result(P+L) Pose errors: {e_t:.3f}m, {e_R:.3f}deg"
np.testing.assert_(e_t < 0.1, f"e_t = {e_t:.3f}m")
np.testing.assert_(e_t < 0.5, f"e_t = {e_t:.3f}m")
np.testing.assert_(e_R < 2.0, f"e_R = {e_R:.3f}deg")

logger.info(log)
Expand Down