-
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.
Added symphony-lake-dataset helper repo to workspace.
- Loading branch information
1 parent
47d4123
commit 56ea351
Showing
11 changed files
with
83 additions
and
32 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 was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
Empty file.
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,7 @@ | ||
#include "experimental/learn_descriptors/symphony_lake_parser.hh" | ||
|
||
#include <iostream> | ||
|
||
namespace robot::experimental::learn_descriptors::symphony_lake_dataset { | ||
void hello_world(const std::string &msg) { std::cout << msg << std::endl; } | ||
} // namespace robot::experimental::learn_descriptors::symphony_lake_dataset |
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,9 @@ | ||
#pragma once | ||
|
||
#include <string.h> | ||
|
||
#include "symphony_lake_dataset/SurveyVector.h" | ||
|
||
namespace robot::experimental::learn_descriptors::symphony_lake_dataset { | ||
void hello_world(const std::string &msg); | ||
} |
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 @@ | ||
#include "experimental/learn_descriptors/symphony_lake_parser.hh" | ||
|
||
#include "gtest/gtest.h" | ||
|
||
namespace robot::experimental::learn_descriptors::symphony_lake_dataset { | ||
TEST(SymphonyLakeParserTest, hello_world) { hello_world("womp womp"); } | ||
} // namespace robot::experimental::learn_descriptors::symphony_lake_dataset |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package(features=["-warning_compile_flags"]) | ||
|
||
cc_library( | ||
name = "symphony_lake_parser", | ||
hdrs = [ | ||
"include/symphony_lake_dataset/SurveyVector.h", | ||
"include/symphony_lake_dataset/csv_functions.h", | ||
"include/symphony_lake_dataset/Function.h", | ||
"include/symphony_lake_dataset/ImagePoint.h", | ||
"include/symphony_lake_dataset/ParseSurvey.h", | ||
"include/symphony_lake_dataset/Pose.h", | ||
"include/symphony_lake_dataset/Survey.h", | ||
], | ||
copts = ["-Wno-unused-parameter"], | ||
visibility = ["//visibility:public"], | ||
srcs = [ | ||
"src/Function.cpp", | ||
"src/ParseSurvey.cpp", | ||
"src/Survey.cpp", | ||
"src/SurveyVector.cpp" | ||
], | ||
strip_include_prefix="include/", | ||
deps = [ | ||
"@opencv//:opencv", | ||
], | ||
) |
56ea351
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
currently, the external repo creates some unused-parameter warnings (due to Function.h) which I suppress by adding copts = ["-Wno-unused-parameter"] to all BUILD files that depend on symphony_lake_parser target, so I've forked the repo and may use that instead with some changes