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:
@@ -55,6 +55,17 @@ namespace temp_viz
|
||||
public:
|
||||
SphereWidget(const cv::Point3f ¢er, 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());
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user