fixed white spaces

This commit is contained in:
Anatoly Baksheev
2014-01-19 03:22:45 +04:00
parent d29c3d2f0d
commit 4e18007066
5 changed files with 27 additions and 34 deletions

View File

@@ -675,14 +675,14 @@ This 3D Widget represents an image in 3D space. ::
class CV_EXPORTS WImage3D : public Widget3D class CV_EXPORTS WImage3D : public Widget3D
{ {
public: public:
//! Creates 3D image at the origin //! Creates 3D image at the origin
WImage3D(InputArray image, const Size2d &size); WImage3D(InputArray image, const Size2d &size);
//! Creates 3D image at a given position, pointing in the direction of the normal, and having the up_vector orientation //! Creates 3D image at a given position, pointing in the direction of the normal, and having the up_vector orientation
WImage3D(InputArray image, const Size2d &size, const Vec3d &position, const Vec3d &normal, const Vec3d &up_vector); WImage3D(InputArray image, const Size2d &size, const Vec3d &position, const Vec3d &normal, const Vec3d &up_vector);
void setImage(InputArray image); void setImage(InputArray image);
}; };
viz::WImage3D::WImage3D viz::WImage3D::WImage3D
----------------------- -----------------------
@@ -1001,7 +1001,7 @@ This 3D Widget defines a mesh. ::
{ {
public: public:
WMesh(const Mesh &mesh); WMesh(const Mesh &mesh);
WMesh(InputArray cloud, InputArray polygons, InputArray colors = noArray(), InputArray normals = noArray()); WMesh(InputArray cloud, InputArray polygons, InputArray colors = noArray(), InputArray normals = noArray());
}; };
viz::WMesh::WMesh viz::WMesh::WMesh
@@ -1015,7 +1015,6 @@ Constructs a WMesh.
.. ocv:function:: WMesh(InputArray cloud, InputArray polygons, InputArray colors = noArray(), InputArray normals = noArray()) .. ocv:function:: WMesh(InputArray cloud, InputArray polygons, InputArray colors = noArray(), InputArray normals = noArray())
:param cloud: Points of the mesh object. :param cloud: Points of the mesh object.
:param polygons: Points of the mesh object. :param polygons: Points of the mesh object.
:param colors: Point colors. :param colors: Point colors.
:param normals: Point normals. :param normals: Point normals.

View File

@@ -310,7 +310,3 @@ void cv::viz::computeNormals(const Mesh& mesh, OutputArray _normals)
else else
_normals.release(); _normals.release();
} }

View File

@@ -80,5 +80,3 @@ namespace cv
#endif #endif