1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

circle widget and arrow widget implementation

This commit is contained in:
ozantonkal
2013-07-04 16:54:46 +03:00
parent d80a965f97
commit f97c3c8b06
3 changed files with 115 additions and 5 deletions
@@ -55,6 +55,17 @@ namespace temp_viz
public:
SphereWidget(const cv::Point3f &center, float radius, int sphere_resolution = 10, const Color &color = Color::white());
};
class CV_EXPORTS ArrowWidget : public Widget
{
public:
ArrowWidget(const Point3f& pt1, const Point3f& pt2, const Color &color = Color::white());
};
class CV_EXPORTS CircleWidget : public Widget
{
public:
CircleWidget(const Point3f& pt, double radius, const Color &color = Color::white());
};
}