added test for textured mesh

This commit is contained in:
Anatoly Baksheev
2014-01-14 01:01:51 +04:00
parent 8d327fa497
commit ffad7b699c
5 changed files with 38 additions and 38 deletions

View File

@@ -99,8 +99,7 @@ namespace cv
CV_EXPORTS Mat readCloud (const String& file, OutputArray colors = noArray(), OutputArray normals = noArray());
///////////////////////////////////////////////////////////////////////////////////////////////
/// Reads mesh. Only ply format is supported now. The function tries to read texture from png-file,
/// and in case of faulure, just leaves the texture field empty.
/// Reads mesh. Only ply format is supported now and no texture load support
CV_EXPORTS Mesh readMesh(const String& file);

View File

@@ -115,7 +115,7 @@ namespace cv
Mat texture, tcoords;
//! Loads mesh from a given ply file
//! Loads mesh from a given ply file (no texture load support for now)
static Mesh load(const String& file);
};