Home
last modified time | relevance | path

Searched refs:WSphere (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/viz/include/opencv2/viz/
Dwidgets.hpp270 class CV_EXPORTS WSphere : public Widget3D class
280WSphere(const cv::Point3d &center, double radius, int sphere_resolution = 10, const Color &color =…
812 template<> CV_EXPORTS WSphere Widget::cast<WSphere>();
/external/opencv3/modules/viz/src/
Dshapes.cpp78 cv::viz::WSphere::WSphere(const Point3d &center, double radius, int sphere_resolution, const Color … in WSphere() function in cv::viz::WSphere
100 template<> cv::viz::WSphere cv::viz::Widget::cast<cv::viz::WSphere>() in cast()
103 return static_cast<WSphere&>(widget); in cast()
/external/opencv3/modules/viz/test/
Dtests_simple.cpp169 merger.addWidget(WSphere(Vec3d(c)*(1.0/255.0), 7.0/255.0, 10, Color(c[2], c[1], c[0]))); in TEST()
327 viz.showWidget("sphe", WSphere(Point3d(0,0,0), 1.0, 10, Color::orange_red())); in TEST()