提交 | 用户 | 时间
|
ce910c
|
1 |
package com.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.netsdk.lib.NetSDKLib; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 260611 |
|
8 |
* @description 大图信息(大图抠小图功能) |
|
9 |
* @date 2022/11/21 17:53:12 |
|
10 |
*/ |
|
11 |
public class NET_DETECT_BIG_PIC_INFO extends NetSDKLib.SdkStructure { |
|
12 |
/** |
|
13 |
* 大图ID |
|
14 |
*/ |
|
15 |
public int nPicID; |
|
16 |
/** |
|
17 |
* 文件在二进制数据块中的偏移位置, 单位:字节 |
|
18 |
*/ |
|
19 |
public int dwOffSet; |
|
20 |
/** |
|
21 |
* 文件大小, 单位:字节 |
|
22 |
*/ |
|
23 |
public int dwFileLenth; |
|
24 |
/** |
|
25 |
* 图片宽度, 单位:像素 |
|
26 |
*/ |
|
27 |
public int dwWidth; |
|
28 |
/** |
|
29 |
* 图片高度, 单位:像素 |
|
30 |
*/ |
|
31 |
public int dwHeight; |
|
32 |
/** |
|
33 |
* 规则检测区域顶点数 |
|
34 |
*/ |
|
35 |
public int nDetectRegionNum; |
|
36 |
/** |
|
37 |
* 规则检测区域 |
|
38 |
*/ |
|
39 |
public NetSDKLib.NET_POINT[] stuDetectRegion = new NetSDKLib.NET_POINT[20]; |
|
40 |
/** |
|
41 |
* 保留字节 |
|
42 |
*/ |
|
43 |
public byte[] bReserved = new byte[44]; |
|
44 |
|
|
45 |
public NET_DETECT_BIG_PIC_INFO() { |
|
46 |
for (int i = 0; i < stuDetectRegion.length; i++) { |
|
47 |
stuDetectRegion[i] = new NetSDKLib.NET_POINT(); |
|
48 |
} |
|
49 |
} |
|
50 |
} |