VAT  3.0
Video Analysis Tool
ThermalColor.h
1 #ifndef THERMAL_COLOR_H
2 #define THERMAL_COLOR_H
3 #include <opencv2/opencv.hpp>
4 #include <vector>
5 #include <QImage>
6 
8 {
9 public:
10 
11  static cv::Mat reliabilityToThermal(cv::Mat reliability);
12  static cv::Mat thermalToReliability(cv::Mat thermal);
13  static QImage reliabilityToThermal(QImage &reliability);
14 
15  void displayScale(int width, int height);
16 
17 
18  cv::Mat scale;
19 };
20 
21 #endif // THERMAL_COLOR_H
Definition: ThermalColor.h:7