Fawkes API  Fawkes Development Version
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
visualization_thread_base.h
1 
2 /***************************************************************************
3  * visualization_thread_base.h - Visualization base class
4  *
5  * Created: Fri Nov 11 00:11:23 2011
6  * Copyright 2011 Tim Niemueller [www.niemueller.de]
7  ****************************************************************************/
8 
9 /* This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Library General Public License for more details.
18  *
19  * Read the full text in the LICENSE.GPL file in the doc directory.
20  */
21 
22 #ifndef __PLUGINS_PERCEPTION_TABLETOP_OBJECTS_VISUALIZATION_BASE_H_
23 #define __PLUGINS_PERCEPTION_TABLETOP_OBJECTS_VISUALIZATION_BASE_H_
24 
25 #ifndef HAVE_VISUAL_DEBUGGING
26 # error TabletopVisualizationThread was disabled by build flags
27 #endif
28 
29 #include <Eigen/Core>
30 #include <Eigen/StdVector>
31 #include <utils/time/time.h>
32 
34 {
35  public:
36  /** Aligned vector of vectors/points. */
37  typedef std::vector<Eigen::Vector4f, Eigen::aligned_allocator<Eigen::Vector4f> > V_Vector4f;
38  // Eigen::aligned_allocator<Eigen::Vector4f>
39 
41 
42  virtual void visualize(const std::string &frame_id,
43  Eigen::Vector4f &table_centroid,
44  Eigen::Vector4f &normal,
45  V_Vector4f &table_hull_vertices,
46  V_Vector4f &table_model_vertices,
47  V_Vector4f &good_table_hull_edges,
48  V_Vector4f &centroids) throw() = 0;
49 };
50 
51 #endif
virtual void visualize(const std::string &frame_id, Eigen::Vector4f &table_centroid, Eigen::Vector4f &normal, V_Vector4f &table_hull_vertices, V_Vector4f &table_model_vertices, V_Vector4f &good_table_hull_edges, V_Vector4f &centroids)=0
Visualize the given data.
std::vector< Eigen::Vector4f, Eigen::aligned_allocator< Eigen::Vector4f > > V_Vector4f
Aligned vector of vectors/points.
Base class for virtualization thread.
virtual ~TabletopVisualizationThreadBase()
Virtual empty destructor.