GridStage.hpp
Go to the documentation of this file.
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following
12  * disclaimer in the documentation and/or other materials provided
13  * with the distribution.
14  * * Neither the name of Willow Garage, Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived
16  * from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  *
31  */
32 /*
33  * GridStage.hpp
34  *
35  * @date 13.11.2015
36  * @author Tristan Igelbrink (Tristan@Igelbrink.com)
37  */
38 
39 #ifndef GRIDSTAGE_HPP__
40 #define GRIDSTAGE_HPP__
41 
42 #include "AbstractStage.hpp"
43 #include "BlockingQueue.hpp"
44 #include <boost/any.hpp>
45 #include <lvr/reconstruction/FastReconstruction.hpp>
46 #include <lvr/reconstruction/TSDFGrid.hpp>
47 #include <lvr/reconstruction/PointsetSurface.hpp>
48 #include <lvr/reconstruction/FastKinFuBox.hpp>
49 #include <lvr/io/PointBuffer.hpp>
50 #include <lvr/io/DataStruct.hpp>
51 #include <lvr/geometry/HalfEdgeVertex.hpp>
52 #include <lvr/geometry/HalfEdgeKinFuMesh.hpp>
53 #include <lvr/geometry/BoundingBox.hpp>
54 #include <kfusion/types.hpp>
57 
58 using namespace lvr;
59 using namespace kfusion;
60 using namespace std;
61 
62 typedef Vertex<float> fVertex;
63 typedef ColorVertex<float, unsigned char> cVertex;
64 typedef FastKinFuBox<ColorVertex<float, unsigned char>, lvr::Normal<float> > cFastBox;
65 typedef TsdfGrid<cVertex, cFastBox, kfusion::Point> TGrid;
66 typedef FastReconstruction<ColorVertex<float, unsigned char>, lvr::Normal<float>, cFastBox > cFastReconstruction;
67 typedef HalfEdgeKinFuMesh<cVertex, lvr::Normal<float> > HMesh;
68 typedef HMesh* MeshPtr;
69 
70 class GridStage : public AbstractStage
71 {
72 public:
73 
74  // default constructor
75  GridStage(double voxel_size = 3.0/512.0, Options* options = NULL);
76 
77  void firstStep();
78  void step();
79  void lastStep();
80 
81 private:
82  size_t grid_count_;
83  BoundingBox<cVertex> bbox_;
84  double voxel_size_;
85  queue<TGrid*> last_grid_queue_;
86  bool last_shift;
87 };
88 #endif // STAGE
TGrid
TsdfGrid< cVertex, cFastBox, kfusion::Point > TGrid
Definition: GridStage.hpp:65
cFastBox
FastKinFuBox< ColorVertex< float, unsigned char >, lvr::Normal< float > > cFastBox
Definition: GridStage.hpp:64
MeshPtr
HMesh * MeshPtr
Definition: GridStage.hpp:68
types.hpp
GridStage::last_grid_queue_
queue< TGrid * > last_grid_queue_
Definition: GridStage.hpp:85
HMesh
HalfEdgeKinFuMesh< cVertex, lvr::Normal< float > > HMesh
Definition: FusionStage.hpp:62
tsdf_volume.hpp
GridStage::last_shift
bool last_shift
Definition: GridStage.hpp:86
NULL
#define NULL
Definition: mydefs.hpp:141
HMesh
HalfEdgeKinFuMesh< cVertex, lvr::Normal< float > > HMesh
Definition: GridStage.hpp:67
options
const kaboom::Options * options
Definition: src/tools/lvr2_kaboom/Main.cpp:45
kfusion
Utility.
Definition: capture.hpp:8
projective_icp.hpp
AbstractStage
Definition: AbstractStage.hpp:49
BlockingQueue.hpp
GridStage::bbox_
BoundingBox< cVertex > bbox_
Definition: GridStage.hpp:83
GridStage::grid_count_
size_t grid_count_
Definition: GridStage.hpp:82
GridStage::voxel_size_
double voxel_size_
Definition: GridStage.hpp:84
std
Definition: HalfEdge.hpp:124
fVertex
Vertex< float > fVertex
Definition: GridStage.hpp:62
kfusion::Options
A class to parse the program options for the reconstruction executable.
Definition: ext/kintinuous/kfusion/include/kfusion/Options.hpp:51
cVertex
ColorVertex< float, unsigned char > cVertex
Definition: GridStage.hpp:63
GridStage
Definition: GridStage.hpp:70
AbstractStage.hpp
cFastReconstruction
FastReconstruction< ColorVertex< float, unsigned char >, lvr::Normal< float >, cFastBox > cFastReconstruction
Definition: GridStage.hpp:66
scripts.create_png.step
step
Definition: create_png.py:42


lvr2
Author(s): Thomas Wiemann , Sebastian Pütz , Alexander Mock , Lars Kiesow , Lukas Kalbertodt , Tristan Igelbrink , Johan M. von Behren , Dominik Feldschnieders , Alexander Löhr
autogenerated on Wed Mar 2 2022 00:37:23