• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Camera_Rect
2
3
4## 概述
5
6矩形定义。
7
8**起始版本:** 11
9
10**相关模块:**[OH_Camera](_o_h___camera.md)
11
12
13## 汇总
14
15
16### 成员变量
17
18| 名称 | 描述 |
19| -------- | -------- |
20| int32_t [topLeftX](#topleftx) | 左上角的X坐标。  |
21| int32_t [topLeftY](#toplefty) | 左上角的Y坐标。  |
22| int32_t [width](#width) | 矩形宽度,单位为像素。  |
23| int32_t [height](#height) | 矩形高度,单位为像素。  |
24
25
26## 结构体成员变量说明
27
28
29### height
30
31```
32int32_t Camera_Rect::height
33```
34**描述**
35矩形高度,单位为像素。
36
37
38### topLeftX
39
40```
41int32_t Camera_Rect::topLeftX
42```
43**描述**
44左上角的X坐标。
45
46
47### topLeftY
48
49```
50int32_t Camera_Rect::topLeftY
51```
52**描述**
53左上角的Y坐标。
54
55
56### width
57
58```
59int32_t Camera_Rect::width
60```
61**描述**
62矩形宽度,单位为像素。
63