Open3D (C++ API)
ViewControl.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - Open3D: www.open3d.org -
3 // ----------------------------------------------------------------------------
4 // The MIT License (MIT)
5 //
6 // Copyright (c) 2018 www.open3d.org
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
10 // in the Software without restriction, including without limitation the rights
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
14 //
15 // The above copyright notice and this permission notice shall be included in
16 // all copies or substantial portions of the Software.
17 //
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 // IN THE SOFTWARE.
25 // ----------------------------------------------------------------------------
26 
27 #pragma once
28 
34 
35 namespace open3d {
36 namespace visualization {
37 
41 class ViewControl {
42 public:
43  static const double FIELD_OF_VIEW_MAX;
44  static const double FIELD_OF_VIEW_MIN;
45  static const double FIELD_OF_VIEW_DEFAULT;
46  static const double FIELD_OF_VIEW_STEP;
47 
48  static const double ZOOM_DEFAULT;
49  static const double ZOOM_MIN;
50  static const double ZOOM_MAX;
51  static const double ZOOM_STEP;
52 
53  static const double ROTATION_RADIAN_PER_PIXEL;
54 
58  };
59 
60 public:
61  virtual ~ViewControl() {}
62 
66  void SetViewMatrices(
67  const Eigen::Matrix4d &model_matrix = Eigen::Matrix4d::Identity());
68 
70  bool ConvertToViewParameters(ViewParameters &status) const;
71  bool ConvertFromViewParameters(const ViewParameters &status);
72 
73  void SetLookat(const Eigen::Vector3d &lookat);
74  void SetUp(const Eigen::Vector3d &up);
75  void SetFront(const Eigen::Vector3d &front);
76  void SetZoom(const double zoom);
77 
88  const camera::PinholeCameraParameters &parameters);
89 
92  virtual void Reset();
96  virtual void ChangeFieldOfView(double step);
97  virtual void ChangeWindowSize(int width, int height);
98 
102  virtual void Scale(double scale);
103 
113  virtual void Rotate(double x, double y, double xo = 0.0, double yo = 0.0);
114 
124  virtual void Translate(double x,
125  double y,
126  double xo = 0.0,
127  double yo = 0.0);
128 
129  // Function to process rolling
133  virtual void Roll(double x);
134 
136  return bounding_box_;
137  }
138 
140 
141  void FitInGeometry(const geometry::Geometry &geometry) {
142  if (geometry.Dimension() == 3) {
143  bounding_box_ += ((const geometry::Geometry3D &)geometry)
145  }
147  }
148 
150  double GetFieldOfView() const { return field_of_view_; }
153  return projection_matrix_;
154  }
157  GLHelper::GLVector3f GetEye() const { return eye_.cast<GLfloat>(); }
158  GLHelper::GLVector3f GetLookat() const { return lookat_.cast<GLfloat>(); }
159  GLHelper::GLVector3f GetUp() const { return up_.cast<GLfloat>(); }
160  GLHelper::GLVector3f GetFront() const { return front_.cast<GLfloat>(); }
161  GLHelper::GLVector3f GetRight() const { return right_.cast<GLfloat>(); }
162  int GetWindowWidth() const { return window_width_; }
163  int GetWindowHeight() const { return window_height_; }
164  double GetZNear() const { return z_near_; }
165  double GetZFar() const { return z_far_; }
166 
171  void SetConstantZNear(double z_near) { constant_z_near_ = z_near; }
176  void SetConstantZFar(double z_far) { constant_z_far_ = z_far; }
185 
186 protected:
187  int window_width_ = 0;
188  int window_height_ = 0;
190  Eigen::Vector3d eye_;
191  Eigen::Vector3d lookat_;
192  Eigen::Vector3d up_;
193  Eigen::Vector3d front_;
194  Eigen::Vector3d right_;
195  double distance_;
197  double zoom_;
198  double view_ratio_;
199  double aspect_;
200  double z_near_;
201  double z_far_;
202  double constant_z_near_ = -1;
203  double constant_z_far_ = -1;
208 };
209 
210 } // namespace visualization
211 } // namespace open3d
static const double ROTATION_RADIAN_PER_PIXEL
Definition: ViewControl.h:53
GLHelper::GLVector3f GetRight() const
Definition: ViewControl.h:161
double distance_
Definition: ViewControl.h:195
double z_near_
Definition: ViewControl.h:200
Eigen::Matrix< GLfloat, 3, 1, Eigen::ColMajor > GLVector3f
Definition: GLHelper.h:50
int Dimension() const
Returns whether the geometry is 2D or 3D.
Definition: Geometry.h:90
virtual void ChangeFieldOfView(double step)
Definition: ViewControl.cpp:270
The base geometry class.
Definition: Geometry.h:37
GLHelper::GLMatrix4f view_matrix_
Definition: ViewControl.h:205
void SetProjectionParameters()
Definition: ViewControl.cpp:254
void SetZoom(const double zoom)
Definition: ViewControl.cpp:141
void SetUp(const Eigen::Vector3d &up)
Definition: ViewControl.cpp:131
int window_width_
Definition: ViewControl.h:187
Eigen::Vector3d lookat_
Definition: ViewControl.h:191
static const double ZOOM_MAX
Definition: ViewControl.h:50
ProjectionType
Definition: ViewControl.h:55
A bounding box that is aligned along the coordinate axes.
Definition: BoundingVolume.h:164
const geometry::AxisAlignedBoundingBox & GetBoundingBox() const
Definition: ViewControl.h:135
ProjectionType GetProjectionType() const
Definition: ViewControl.cpp:237
bool ConvertFromViewParameters(const ViewParameters &status)
Definition: ViewControl.cpp:114
View controller for visualizer.
Definition: ViewControl.h:41
void SetConstantZFar(double z_far)
Definition: ViewControl.h:176
int GetWindowWidth() const
Definition: ViewControl.h:162
void SetFront(const Eigen::Vector3d &front)
Definition: ViewControl.cpp:136
static const double FIELD_OF_VIEW_MAX
Definition: ViewControl.h:43
virtual void Scale(double scale)
Definition: ViewControl.cpp:285
GLHelper::GLMatrix4f model_matrix_
Definition: ViewControl.h:206
double z_far_
Definition: ViewControl.h:201
static const double ZOOM_DEFAULT
Definition: ViewControl.h:48
void ResetBoundingBox()
Definition: ViewControl.h:139
static const double FIELD_OF_VIEW_DEFAULT
Definition: ViewControl.h:45
Eigen::Matrix< GLfloat, 4, 4, Eigen::ColMajor > GLMatrix4f
Definition: GLHelper.h:52
GLHelper::GLVector3f GetEye() const
Definition: ViewControl.h:157
double field_of_view_
Definition: ViewControl.h:196
Eigen::Vector3d eye_
Definition: ViewControl.h:190
GLHelper::GLMatrix4f GetProjectionMatrix() const
Definition: ViewControl.h:152
void SetViewMatrices(const Eigen::Matrix4d &model_matrix=Eigen::Matrix4d::Identity())
Definition: ViewControl.cpp:55
void UnsetConstantZNear()
Definition: ViewControl.h:180
GLHelper::GLVector3f GetUp() const
Definition: ViewControl.h:159
virtual ~ViewControl()
Definition: ViewControl.h:61
void UnsetConstantZFar()
Definition: ViewControl.h:184
The base geometry class for 3D geometries.
Definition: Geometry3D.h:46
Eigen::Vector3d right_
Definition: ViewControl.h:194
virtual void Translate(double x, double y, double xo=0.0, double yo=0.0)
Function to process translation.
Definition: ViewControl.cpp:304
virtual void ChangeWindowSize(int width, int height)
Definition: ViewControl.cpp:278
double GetZFar() const
Definition: ViewControl.h:165
static const double FIELD_OF_VIEW_STEP
Definition: ViewControl.h:46
geometry::AxisAlignedBoundingBox bounding_box_
Definition: ViewControl.h:189
GLHelper::GLVector3f GetLookat() const
Definition: ViewControl.h:158
double GetZNear() const
Definition: ViewControl.h:164
static const double FIELD_OF_VIEW_MIN
Definition: ViewControl.h:44
static const double ZOOM_MIN
Definition: ViewControl.h:49
double aspect_
Definition: ViewControl.h:199
GLHelper::GLMatrix4f GetMVPMatrix() const
Definition: ViewControl.h:151
Contains both intrinsic and extrinsic pinhole camera parameters.
Definition: PinholeCameraParameters.h:40
void FitInGeometry(const geometry::Geometry &geometry)
Definition: ViewControl.h:141
double constant_z_far_
Definition: ViewControl.h:203
int window_height_
Definition: ViewControl.h:188
GLHelper::GLMatrix4f MVP_matrix_
Definition: ViewControl.h:207
int GetWindowHeight() const
Definition: ViewControl.h:163
Definition: Open3DViewer.h:29
double zoom_
Definition: ViewControl.h:197
virtual void Roll(double x)
Definition: ViewControl.cpp:315
void SetConstantZNear(double z_near)
Definition: ViewControl.h:171
double constant_z_near_
Definition: ViewControl.h:202
AxisAlignedBoundingBox & Clear() override
Clear all elements in the geometry.
Definition: BoundingVolume.cpp:196
int height
Definition: FilePCD.cpp:70
Eigen::Vector3d up_
Definition: ViewControl.h:192
virtual AxisAlignedBoundingBox GetAxisAlignedBoundingBox() const override
Returns an axis-aligned bounding box of the geometry.
Definition: BoundingVolume.cpp:216
Definition: ViewParameters.h:37
double view_ratio_
Definition: ViewControl.h:198
void SetLookat(const Eigen::Vector3d &lookat)
Definition: ViewControl.cpp:126
bool ConvertToViewParameters(ViewParameters &status) const
Function to get equivalent view parameters (support orthogonal)
Definition: ViewControl.cpp:103
GLHelper::GLMatrix4f projection_matrix_
Definition: ViewControl.h:204
GLHelper::GLVector3f GetFront() const
Definition: ViewControl.h:160
bool ConvertFromPinholeCameraParameters(const camera::PinholeCameraParameters &parameters)
Definition: ViewControl.cpp:189
virtual void Reset()
Definition: ViewControl.cpp:245
Eigen::Vector3d front_
Definition: ViewControl.h:193
bool ConvertToPinholeCameraParameters(camera::PinholeCameraParameters &parameters)
Definition: ViewControl.cpp:146
virtual void Rotate(double x, double y, double xo=0.0, double yo=0.0)
Function to process rotation.
Definition: ViewControl.cpp:290
GLHelper::GLMatrix4f GetModelMatrix() const
Definition: ViewControl.h:156
double GetFieldOfView() const
Function to get field of view.
Definition: ViewControl.h:150
GLHelper::GLMatrix4f GetViewMatrix() const
Definition: ViewControl.h:155
static const double ZOOM_STEP
Definition: ViewControl.h:51
int width
Definition: FilePCD.cpp:69