Apollo  6.0
Open source self driving car software
video_image_viewer.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright 2018 The Apollo Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *****************************************************************************/
16 
17 #pragma once
18 
19 #include <QtWidgets/QOpenGLWidget>
20 #include <memory>
21 
24 
25 class Texture;
27 
28 class VideoImgViewer : public QOpenGLWidget, protected QOpenGLFunctions {
29  public:
30  explicit VideoImgViewer(QWidget* parent = nullptr);
32 
33  protected:
34  void initializeGL() override;
35  void resizeGL(int w, int h) override;
36  void paintGL() override;
37 
38  private:
39  bool is_init_;
40  int mvp_id_;
41 
42  Plane plane_;
43  FreeCamera ortho_camera_;
44  std::shared_ptr<Texture> default_image_;
45 
46  std::shared_ptr<QOpenGLShaderProgram> video_image_shader_prog_;
47  friend class FixedAspectRatioWidget;
48 };
VideoImgViewer(QWidget *parent=nullptr)
void paintGL() override
Definition: video_image_viewer.h:28
Definition: texture.h:25
Definition: plane.h:24
void initializeGL() override
Definition: fixedaspectratiowidget.h:24
void resizeGL(int w, int h) override
Definition: free_camera.h:21