removed Mesh::Ptr since mesh itself consists of shared points (cv::Mat)
This commit is contained in:
@@ -35,9 +35,11 @@ namespace cv
|
||||
class CV_EXPORTS Mesh3d
|
||||
{
|
||||
public:
|
||||
typedef cv::Ptr<Mesh3d> Ptr;
|
||||
Mat cloud, colors, polygons;
|
||||
static cv::viz::Mesh3d::Ptr loadMesh(const String& file);
|
||||
|
||||
Mat cloud, colors;
|
||||
Mat polygons;
|
||||
|
||||
static cv::viz::Mesh3d loadMesh(const String& file);
|
||||
|
||||
private:
|
||||
struct loadMeshImpl;
|
||||
@@ -93,4 +95,4 @@ namespace cv
|
||||
};
|
||||
|
||||
} /* namespace viz */
|
||||
} /* namespace cv */
|
||||
} /* namespace cv */
|
||||
|
Reference in New Issue
Block a user