forked from MIT-SPARK/Kimera-Semantics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request MIT-SPARK#18 from SPARK/feature/squashed_history
Feature/squashed history
- Loading branch information
Showing
56 changed files
with
28,568 additions
and
440 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*.swp | ||
*.idea | ||
**/mesh_results/* | ||
**/tsdf_results/* | ||
*.ccls* | ||
*.vscode/ | ||
*.ipynb_checkpoints/ |
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
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#pragma once | ||
|
||
#include <memory> | ||
|
||
// These macros were inspired mainly on Maplab's macros | ||
// https://github.com/ethz-asl/maplab | ||
|
||
#define KIMERA_POINTER_TYPEDEFS(TypeName) \ | ||
typedef std::shared_ptr<TypeName> Ptr; \ | ||
typedef std::shared_ptr<const TypeName> ConstPtr; \ | ||
typedef std::unique_ptr<TypeName> UniquePtr; \ | ||
typedef std::unique_ptr<const TypeName> ConstUniquePtr; \ | ||
typedef std::weak_ptr<TypeName> WeakPtr; \ | ||
typedef std::weak_ptr<const TypeName> WeakConstPtr; \ | ||
void definePointerTypedefs##__FILE__##__LINE__(void) | ||
|
||
#define KIMERA_DELETE_COPY_CONSTRUCTORS(TypeName) \ | ||
TypeName(const TypeName&) = delete; \ | ||
void operator=(const TypeName&) = delete |
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 |
---|---|---|
|
@@ -325,7 +325,6 @@ void MergedSemanticTsdfIntegrator::integrateVoxel( | |
&mutexes_, | ||
voxel, | ||
semantic_voxel); | ||
|
||
} | ||
} | ||
|
||
|
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.