You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
723 B
34 lines
723 B
#ifndef SWOUTPUT_H
|
|
#define SWOUTPUT_H
|
|
|
|
#include <QMetaType>
|
|
|
|
#include "model/scenarioGenerator/dto/software/SwScenarioDependent.h"
|
|
#include "model/scenarioGenerator/dto/software/ScanConversionConfig.h"
|
|
|
|
struct ScenGenSoftwareOutput_t
|
|
{
|
|
quint32 outputWidth;
|
|
quint32 outputHeight;
|
|
|
|
quint8 rejectB;
|
|
quint8 sri;
|
|
quint8 enhanceB;
|
|
quint8 dynamicContrastBSelector;
|
|
qint8 gainB;
|
|
quint8 tintMapBSelector;
|
|
quint8 tintMapMSelector;
|
|
quint8 cri;
|
|
quint8 criFilterMode;
|
|
quint8 persist;
|
|
quint8 frameFilterMode;
|
|
QList<int> grayMapB;
|
|
QList<int> grayMapM;
|
|
|
|
SwScenarioDependent_t scenarioDependent;
|
|
QList<ScenGenScanConversionConfig_t> scanConversionProps;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(ScenGenSoftwareOutput_t)
|
|
|
|
#endif //SWOUTPUT_H
|
|
|