Home
last modified time | relevance | path

Searched refs:max_point (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/viz/src/
Dshapes.cpp307 cv::viz::WCube::WCube(const Point3d& min_point, const Point3d& max_point, bool wire_frame, const Co… in WCube() argument
310 bounds[0] = std::min(min_point.x, max_point.x); in WCube()
311 bounds[1] = std::max(min_point.x, max_point.x); in WCube()
312 bounds[2] = std::min(min_point.y, max_point.y); in WCube()
313 bounds[3] = std::max(min_point.y, max_point.y); in WCube()
314 bounds[4] = std::min(min_point.z, max_point.z); in WCube()
315 bounds[5] = std::max(min_point.z, max_point.z); in WCube()
/external/opencv3/modules/viz/include/opencv2/viz/
Dwidgets.hpp381 … WCube(const Point3d& min_point = Vec3d::all(-0.5), const Point3d& max_point = Vec3d::all(0.5),