-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Features/ground align and pruning (#55)
* write cpp test for heaptrack * add ground alignment part * add self-similarity check * add ground align to heaptrack test * remove unused piece of code * remove self_similarity_filter flag, make it default * modify pipeline to return all closures for a given local map * update test.cpp for changes in api * modify density map generation after heaptrack insights * use std::size_t for container sizes type consistently * modify functions to implicitly ground align and prune features, rename and constexpr stuff * remove test code for heaptrack * remove explicit API call for ground alignment * modify default config * remove explicit ground alignment, no downsampling before adding to local map * add numeric coz windows is dumb * new API for best, top_k and all closures per map * remove - to also push tar.gz artifact to pypi * Change in API * massive change in API: replace match_and_add function with get_closures * remove gt_closures_pipeline stuff, related 3rdparty librbries * remove from README as well, still available on ICRA2024 tag * add readme to python folder for pypi description * bump version to 2.0.0 * fix name of func * remove the local_map_factor config --------- Co-authored-by: tizianoGuadagnino <[email protected]>
- Loading branch information
1 parent
eef1d23
commit 4a2ad69
Showing
35 changed files
with
462 additions
and
970 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
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,6 +1,4 @@ | ||
MIT License | ||
|
||
Copyright (c) 2017 Thibaut Goetghebuer-Planchon <[email protected]> | ||
Copyright (c) 2008-2015 Jesse Beder. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -9,13 +7,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWAR |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/sophus/common.hpp b/sophus/common.hpp | ||
index 5634d35b..56a1b590 100644 | ||
--- a/sophus/common.hpp | ||
+++ b/sophus/common.hpp | ||
@@ -18,7 +18,7 @@ | ||
#define SOPHUS_FMT_CSTR(description, ...) description | ||
#define SOPHUS_FMT_STR(description, ...) std::string(description) | ||
#define SOPHUS_FMT_PRINT(description, ...) std::printf("%s\n", description) | ||
-#define SOPHUS_FMT_ARG(arg) | ||
+#define SOPHUS_FMT_ARG(arg) arg | ||
|
||
#else // !SOPHUS_USE_BASIC_LOGGING |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.