fixed some warnings for windows

minor buitification
This commit is contained in:
Anatoly Baksheev
2013-07-11 13:54:36 +04:00
parent ea8d485d76
commit c6a8bd65a8
7 changed files with 32 additions and 33 deletions

View File

@@ -142,8 +142,8 @@ namespace temp_viz
class CV_EXPORTS CloudWidget : public Widget3D
{
public:
CloudWidget(InputArray _cloud, InputArray _colors);
CloudWidget(InputArray _cloud, const Color &color = Color::white());
CloudWidget(InputArray cloud, InputArray colors);
CloudWidget(InputArray cloud, const Color &color = Color::white());
private:
struct CreateCloudWidget;
@@ -152,7 +152,7 @@ namespace temp_viz
class CV_EXPORTS CloudNormalsWidget : public Widget3D
{
public:
CloudNormalsWidget(InputArray _cloud, InputArray _normals, int level = 100, float scale = 0.02f, const Color &color = Color::white());
CloudNormalsWidget(InputArray cloud, InputArray normals, int level = 100, float scale = 0.02f, const Color &color = Color::white());
private:
struct ApplyCloudNormals;