intial implementation of frustum + image (the color of the frustum is currently dependent on the first pixel of the image)

This commit is contained in:
ozantonkal
2013-07-23 15:43:23 +02:00
parent f9938da67d
commit 4d70671231
2 changed files with 153 additions and 0 deletions

View File

@@ -174,6 +174,10 @@ 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);
private:
struct CopyImpl;
};
class CV_EXPORTS TrajectoryWidget : public Widget3D