mf
Media Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
point_cloud.h
Go to the documentation of this file.
1 #ifndef MF_POINT_CLOUD_H_
2 #define MF_POINT_CLOUD_H_
3 
4 #include "../ndarray/ndarray_view.h"
5 
6 namespace mf {
7 
8 template<class Point>
9 class point_cloud {
10 private:
12 
13 public:
14  explicit point_cloud(const ndarray_view<1, Point>& arr) :
15  view_(arr) { }
16 };
17 
18 }
19 
20 #endif
Definition: point_cloud.h:9
point_cloud(const ndarray_view< 1, Point > &arr)
Definition: point_cloud.h:14