Skip to content

NET_SDK_IVE_DETECT_TARGET_CFG

Structure Definition

1
2
3
4
5
6
struct NET_SDK_IVE_DETECT_TARGET_CFG
{
    BOOL enable;                        
    int sensitivity;                    
    int stayAlarmThreshold;             
};
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_DETECT_TARGET_CFG
{
    bool enable;
    Int32 sensitivity;
    Int32 stayAlarmThreshold;
}

Function Description

Smart event detection target configuration

Member Description

Member Type Remark
enable BOOL Whether to enable.
sensitivity int Sensitivity, 0-100, -1 means no such parameter.
stayAlarmThreshold int Trigger alarm time threshold, unit: s, 0 ~ 10000, -1 means no such parameter.
Error Code