Skip to content
Snippets Groups Projects
Commit 71c3fef2 authored by Sergi Pujol Badell's avatar Sergi Pujol Badell
Browse files

scene base id added

parent a4d5c236
No related branches found
No related tags found
1 merge request!4Resolve "Implementation of Falko lib"
......@@ -13,15 +13,12 @@
namespace laserscanutils {
struct SceneBase {
struct SceneBase
{
int id;
};
typedef std::shared_ptr<SceneBase> sceneBasePtr;
struct SceneBaseList {
std::list<std::shared_ptr<SceneBase>> scenes_;
};
typedef std::shared_ptr<SceneBaseList> sceneBaseListPtr;
} /* namespace laserscanutils */
#endif /* SCENE_BASE_H_ */
......@@ -40,14 +40,9 @@ typedef falkolib::CGH cgh;
template <typename D> struct SceneFalko : public SceneBase {
std::vector<falkolib::FALKO> keypoints_list_;
std::vector<D> descriptors_list_;
int id;
std::vector<D> descriptors_list_;
};
template <typename D> struct SceneFalkoList : public SceneBaseList {
public:
std::list<std::shared_ptr<SceneFalko<D>>> scenes_;
};
} /* namespace laserscanutils */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment