CCIMXDesktop
 
Loading...
Searching...
No Matches
QtAdaptTools.h
1#ifndef QTADAPTTOOLS_H
2#define QTADAPTTOOLS_H
3#include <QImage>
4class CVImage;
5
12namespace QtAdaptTools {
13
19QImage toQImage(const CVImage& cvImage);
20
27QImage toDisplayableImage(const CVImage& cvImage);
28
35CVImage fromRGBQImage(const QImage& image);
36
37}
38
39#endif // QTADAPTTOOLS_H
The CVImage class is the image class that provides the image in the frameworks.
Definition CVImage.h:9
The QtAdaptTools namespace provides the tools.
Definition QtAdaptTools.h:12
QImage toQImage(const CVImage &cvImage)
toQImage convert the CVImage to QImage
Definition QtAdaptTools.cpp:4
CVImage fromRGBQImage(const QImage &image)
fromRGBQImage trans image from QImage to CVImage
Definition QtAdaptTools.cpp:43
QImage toDisplayableImage(const CVImage &cvImage)
toDisplayableImage converts to the direct displayable
Definition QtAdaptTools.cpp:26