Skip to content
Snippets Groups Projects
Commit 8426f90a authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Initial scene class

parent 839f3fe5
No related branches found
No related tags found
1 merge request!109Resolves #173 remove voxel code
#ifndef _FTL_RECONSTRUCT_SCENE_HPP_
#define _FTL_RECONSTRUCT_SCENE_HPP_
namespace ftl {
class Scene {
public:
Scene();
~Scene();
void getFrame(eigen::Matrix4f &pose, ftl::rgbd::Frame &);
ftl::rgbd::Frame getFrame(eigen::Matrix4f &pose);
void getFrameSet(ftl::rgbd::FrameSet &);
ftl::rgbd::FrameSet &getFrameSet();
};
}
#endif // _FTL_RECONSTRUCT_SCENE_HPP_
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