sphere widget implementation

This commit is contained in:
ozantonkal
2013-07-04 16:32:06 +03:00
parent 3d3e3fd470
commit d80a965f97
3 changed files with 34 additions and 2 deletions

View File

@@ -49,6 +49,12 @@ namespace temp_viz
PlaneWidget(const Vec4f& coefs, const Color &color = Color::white());
PlaneWidget(const Vec4f& coefs, const Point3f& pt, const Color &color = Color::white());
};
class CV_EXPORTS SphereWidget : public Widget
{
public:
SphereWidget(const cv::Point3f &center, float radius, int sphere_resolution = 10, const Color &color = Color::white());
};
}