Skip to content

NET_SDK_IVE_AVD_T

Structure Definition

1
2
3
4
5
typedef struct
{
    unsigned int count;                 
    NET_SDK_IVE_AVD_INFO_T avdInfo[32]; 
} NET_SDK_IVE_AVD_T;
1
2
3
4
5
6
7
[StructLayout(LayoutKind.Sequential, Pack = 4)]
public struct NET_SDK_IVE_AVD_T
{
    public UInt32 count;
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 32)]
    public NET_SDK_IVE_AVD_INFO_T[] avdInfo;
}

Function Description

Video anomaly detection structure.

Member Description

Member Type Remark
count unsigned int Quantity.
avdInfo NET_SDK_IVE_AVD_INFO_T[32] Exception information.
Error Code