跳转至

NET_SDK_IMAGE_EFFECT_T

结构体定义

1
2
3
4
5
6
7
typedef struct
{
    unsigned int minValue;     
    unsigned int maxValue;     
    unsigned int curValue;     
    unsigned int defaultValue; 
} NET_SDK_IMAGE_EFFECT_T;
1
2
3
4
5
6
7
8
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IMAGE_EFFECT_T
{
    public UInt32 minValue;
    public UInt32 maxValue;
    public UInt32 curValue;
    public UInt32 defaultValue;
}

功能描述

图像显示参数。

成员说明

成员 类型 备注
minValue unsigned int 最小值。
maxValue unsigned int 最大值。
curValue unsigned int 当前值。
defaultValue unsigned int 默认值。
错误码