提交 | 用户 | 时间 | ||
149dd0 | 1 | package com.iailab.netsdk.lib.structure; |
H | 2 | |
3 | ||
4 | import com.iailab.netsdk.lib.NetSDKLib; | |
5 | ||
6 | /** | |
7 | * @author 260611 | |
8 | * @description 图片中校准点的像素坐标 | |
9 | * @date 2022/08/04 10:13:32 | |
10 | */ | |
11 | public class NET_RADAR_PIXELPOINT extends NetSDKLib.SdkStructure { | |
12 | /** | |
13 | * X像素坐标区间[0,8191] | |
14 | */ | |
15 | public int nPixelPointX; | |
16 | /** | |
17 | * Y像素坐标区间[0,8191] | |
18 | */ | |
19 | public int nPixelPointY; | |
20 | ||
21 | public NET_RADAR_PIXELPOINT() { | |
22 | } | |
23 | } |