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.
44 lines
595 B
44 lines
595 B
#ifndef DATABMODESETTING_H
|
|
#define DATABMODESETTING_H
|
|
|
|
#include <QMetaType>
|
|
|
|
typedef struct DataBModeSetting_t
|
|
{
|
|
quint32 sri;
|
|
|
|
quint32 persist;
|
|
quint32 frameFilter;
|
|
|
|
quint32 oti;
|
|
|
|
quint32 criFilter;
|
|
quint32 cri;
|
|
|
|
quint32 lineFilter;
|
|
quint32 lineDensity;
|
|
|
|
bool ffc;
|
|
bool hi;
|
|
|
|
quint32 ao;
|
|
quint32 frequency;
|
|
float angle;
|
|
|
|
quint32 enhance;
|
|
quint32 reject;
|
|
quint32 dynamicContrast;
|
|
|
|
bool virtualConvex;
|
|
bool pi;
|
|
|
|
float depth;
|
|
int focusPoints;
|
|
int focusNumber;
|
|
int gainB;
|
|
bool hdZoom;
|
|
} DataBModeSetting_t;
|
|
|
|
Q_DECLARE_METATYPE(DataBModeSetting_t);
|
|
|
|
#endif //DATABMODESETTING_H
|
|
|