OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fov_
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/viz/src/
types.cpp
108
focal_ = Vec2f(principal_point_[0] / tan(
fov_
[0]*0.5f), principal_point_[1] / tan(
fov_
[1]*0.5f));
140
fov_
[0] = atan2(principal_point_[0], focal_[0]) + atan2(window_size.width-principal_point_[0], focal_[0]);
141
fov_
[1] = atan2(principal_point_[1], focal_[1]) + atan2(window_size.height-principal_point_[1], focal_[1]);
151
fov_
[0] = atan2(cx, fx) + atan2(window_size.width - cx, fx);
152
fov_
[1] = atan2(cy, fy) + atan2(window_size.height - cy, fy);
175
fov_
[0] = (atan2(principal_point_[0],focal_[0]) + atan2(window_size.width-principal_point_[0],focal_[0]));
/external/opencv3/modules/viz/include/opencv2/viz/
types.hpp
181
const Vec2d& getFov() const { return
fov_
; }
182
void setFov(const Vec2d& fov) {
fov_
= fov; }
204
Vec2d
fov_
;
member in class:cv::viz::Camera
Completed in 57 milliseconds