• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Camera_MetadataObject
2
3
4## Overview
5
6The Camera_MetadataObject struct describes the camera metadata.
7
8**Since**: 11
9
10**Related module**: [OH_Camera](_o_h___camera.md)
11
12**Header file**: [camera.h](camera_8h.md)
13
14
15## Summary
16
17
18### Member Variables
19
20| Name| Description|
21| -------- | -------- |
22| [Camera_MetadataObjectType](_o_h___camera.md#camera_metadataobjecttype) [type](#type) | Type of the metadata object. |
23| int64_t [timestamp](#timestamp) | Timestamp of the metadata object, in milliseconds. |
24| [Camera_Rect](_camera___rect.md) \* [boundingBox](#boundingbox) | Pointer to the axis aligned bounding box of the metadata object. |
25
26
27## Member Variable Description
28
29
30### boundingBox
31
32```
33Camera_Rect* Camera_MetadataObject::boundingBox
34```
35**Description**
36
37Pointer to the axis aligned bounding box of the metadata object.
38
39
40### timestamp
41
42```
43int64_t Camera_MetadataObject::timestamp
44```
45**Description**
46
47Timestamp of the metadata object, in milliseconds.
48
49
50### type
51
52```
53Camera_MetadataObjectType Camera_MetadataObject::type
54```
55**Description**
56
57Type of the metadata object.
58