Home
last modified time | relevance | path

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

/external/opencv3/modules/viz/src/
Dtypes.cpp108 … focal_ = Vec2f(principal_point_[0] / tan(fov_[0]*0.5f), principal_point_[1] / tan(fov_[1]*0.5f)); in Camera()
140fov_[0] = atan2(principal_point_[0], focal_[0]) + atan2(window_size.width-principal_point_[0], fo… in Camera()
141fov_[1] = atan2(principal_point_[1], focal_[1]) + atan2(window_size.height-principal_point_[1], fo… in Camera()
151 fov_[0] = atan2(cx, fx) + atan2(window_size.width - cx, fx); in init()
152 fov_[1] = atan2(cy, fy) + atan2(window_size.height - cy, fy); in init()
175fov_[0] = (atan2(principal_point_[0],focal_[0]) + atan2(window_size.width-principal_point_[0],foca… in setWindowSize()
/external/opencv3/modules/viz/include/opencv2/viz/
Dtypes.hpp181 const Vec2d& getFov() const { return fov_; } in getFov()
182 void setFov(const Vec2d& fov) { fov_ = fov; } in setFov()
204 Vec2d fov_; member in cv::viz::Camera