CameraPositionWidget: a workaround for setting frustum color in the presence of an image

This commit is contained in:
ozantonkal
2013-07-25 16:47:30 +02:00
parent ec756afe87
commit b661d72252
2 changed files with 7 additions and 2 deletions

View File

@@ -173,7 +173,7 @@ namespace cv
CameraPositionWidget(const Vec3f &position, const Vec3f &look_at, const Vec3f &up_vector, double scale = 1.0);
CameraPositionWidget(const Matx33f &K, double scale = 1.0, const Color &color = Color::white());
CameraPositionWidget(const Vec2f &fov, double scale = 1.0, const Color &color = Color::white());
CameraPositionWidget(const Matx33f &K, const Mat &img, double scale = 1.0);
CameraPositionWidget(const Matx33f &K, const Mat &img, double scale = 1.0, const Color &color = Color::white());
};