TAMSVIZ
Visualization and annotation tool for ROS
imagewindow.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "renderwindow.h"
7 
8 #include "../annotations/image.h"
9 #include "../core/topic.h"
10 #include "../core/tracks.h"
11 #include "../render/renderer.h"
12 #include "../render/texture.h"
13 
14 struct ClampedVector2d : Eigen::Vector2d {
15  template <class... T>
16  ClampedVector2d(const T &... args) : Eigen::Vector2d(args...) {}
17 };
18 STRUCT_BEGIN(ClampedVector2d);
19 STRUCT_PROPERTY(x, min = 0, max = 1);
20 STRUCT_PROPERTY(y, min = 0, max = 1);
21 STRUCT_END();
22 
23 class AnnotationView;
24 
26  std::shared_ptr<Subscriber<Message>> subscriber;
27  static constexpr double minZoom() { return 0.01; }
28  static constexpr double maxZoom() { return 1000000; }
29 
30 public:
31  std::shared_ptr<ImageAnnotationBase> new_annotation;
32  std::shared_ptr<AnnotationSpan> new_annotation_span;
33  std::shared_ptr<Type> annotation_type;
34  std::unordered_map<std::shared_ptr<ImageAnnotationBase>, AnnotationView *>
35  annotation_views;
36  ImageWindow();
37  PROPERTY(std::string, topic, "");
38  PROPERTY(ClampedVector2d, center, Eigen::Vector2d(0.5, 0.5));
39  PROPERTY(double, zoom, 1.0, min = minZoom(), max = maxZoom());
40 };
41 DECLARE_TYPE(ImageWindow, ContentWindowBase);