Reworked RawImage class to use OpenCV

This commit is contained in:
2020-05-10 17:02:16 +02:00
parent fcc1696c2c
commit 1e45a78b39
9 changed files with 265 additions and 227 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ class Image : public QObject
bool m_released;
bool m_current;
QPixmap m_pixmap;
std::unique_ptr<RawImageAbs> m_rawImage;
std::unique_ptr<RawImage> m_rawImage;
QString m_name;
ImageInfoData m_info;
ImageRingList *m_ringList;
@@ -28,7 +28,7 @@ public:
void release();
QString name() const;
QPixmap pixmap() const;
RawImageAbs* rawImage();
RawImage* rawImage();
ImageInfoData info() const;
bool isCurrent() const;
signals: