LabelMe
shape3d.h
Go to the documentation of this file.
1 
8 #ifndef SHAPE3D_H
9 #define SHAPE3D_H
10 #include<QVector>
11 #include<opencv2/opencv.hpp>
12 #include"Shape.h"
13 
15 class My::Shape3D:public My::Shape{
16 public:
17 
19  QVector<cv::Point3f> points;
20 public:
21  Shape3D(Type t);
22  virtual ~Shape3D()=0;
23 };
24 
25 #endif // SHAPE3D_H
shape.h
所有形状纯虚基类
My::Shape::Type
Type
标注形状的类型
Definition: shape.h:26
My::Shape
所有标注形状的基类
Definition: shape.h:18
My::Shape3D
3d标注形状的基类
Definition: shape3d.h:15
My::Shape3D::points
QVector< cv::Point3f > points
存储像素点位
Definition: shape3d.h:19
My::Shape3D::~Shape3D
virtual ~Shape3D()=0
Definition: shape3d.cpp:14
My::Shape3D::Shape3D
Shape3D(Type t)
Definition: shape3d.cpp:10