uav_payload_camera.h
41.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
/**
********************************************************************
* @file autel_payload_camera.h
* @brief This is the header file for "autel_payload_camera.c", defining the structure and
* (exported) function prototypes.
*
* @copyright (c) 2021 UAV. All rights reserved.
*
* All information contained herein is, and remains, the property of UAV.
* The intellectual and technical concepts contained herein are proprietary
* to UAV and may be covered by U.S. and foreign patents, patents in process,
* and protected by trade secret or copyright law. Dissemination of this
* information, including but not limited to data and other proprietary
* material(s) incorporated within the information, in any form, is strictly
* prohibited without the express written consent of UAV.
*
* If you receive this source code without UAV’s authorization, you may not
* further disseminate the information, and you must immediately remove the
* source code and notify UAV of its removal. UAV reserves the right to pursue
* legal actions against you for any loss(es) or damage(s) caused by your
* failure to do so.
*
*********************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef UAV_PAYLOAD_CAMERA_H
#define UAV_PAYLOAD_CAMERA_H
/* Includes ------------------------------------------------------------------*/
#include "uav_typedef.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Exported constants --------------------------------------------------------*/
/* Exported types ------------------------------------------------------------*/
/**
* @brief Camera shooting state when photographing.
*/
typedef enum {
UAV_CAMERA_SHOOTING_PHOTO_IDLE = 0, /*!< Photographing in idle state. */
UAV_CAMERA_SHOOTING_SINGLE_PHOTO = 1, /*!< Photographing in single photograph state . */
UAV_CAMERA_SHOOTING_BURST_PHOTO = 2, /*!< Photographing in burst photograph state. */
UAV_CAMERA_SHOOTING_INTERVAL_PHOTO = 6, /*!< Photographing in interval photograph state. */
} E_UAVCameraShootingState;
/**
* @brief Camera metering mode.
*/
typedef enum {
UAV_CAMERA_METERING_MODE_CENTER = 0, /*!< Center metering mode. */
UAV_CAMERA_METERING_MODE_AVERAGE = 1, /*!< Average metering mode. */
UAV_CAMERA_METERING_MODE_SPOT = 2, /*!< Spot metering mode. */
} E_UAVCameraMeteringMode;
/**
* @brief Camera playback mode in playback process.
*/
typedef enum {
UAV_CAMERA_PLAYBACK_MODE_PLAY = 2, /*!< Play playbacking mode. */
UAV_CAMERA_PLAYBACK_MODE_PAUSE = 3, /*!< Pause playbacking mode. */
UAV_CAMERA_PLAYBACK_MODE_STOP = 7, /*!< Stop playbacking mode. */
} E_UAVCameraPlaybackMode;
/**
* @brief Camera supported video frames when working in playback mode.
*/
typedef enum {
UAV_CAMERA_VIDEO_FRAME_RATE_24_FPS = 13, /*!< The camera's video frame rate is 24fps (frames per second) */
UAV_CAMERA_VIDEO_FRAME_RATE_25_FPS = 2, /*!< The camera's video frame rate is 25fps (frames per second) */
UAV_CAMERA_VIDEO_FRAME_RATE_30_FPS = 14, /*!< The camera's video frame rate is 30fps (frames per second) */
UAV_CAMERA_VIDEO_FRAME_RATE_UNKNOWN = 0, /*!< The camera's video frame rate is unknown (frames per second) */
} E_UAVCameraVideoFrameRate;
/**
* @brief Camera supported video resolutions when working in playback mode.
*/
typedef enum {
UAV_CAMERA_VIDEO_RESOLUTION_640x480 = 0, /*!< /The camera's video resolution is 640x480. */
UAV_CAMERA_VIDEO_RESOLUTION_1280x720 = 4, /*!< /The camera's video resolution is 1280x720. */
UAV_CAMERA_VIDEO_RESOLUTION_1920x1080 = 10, /*!< /The camera's video resolution is 1920x1080. */
UAV_CAMERA_VIDEO_RESOLUTION_2048x1080 = 37, /*!< /The camera's video resolution is 2048x1080. */
UAV_CAMERA_VIDEO_RESOLUTION_3840x2160 = 41, /*!< /The camera's video resolution is 3840x2160. */
UAV_CAMERA_VIDEO_RESOLUTION_UNKNOWN = 255, /*!< /The camera's video resolution is unknown. */
} E_UAVCameraVideoResolution;
/**
* @brief Camera zoom state in tap zoom process.
*/
typedef enum {
UAV_CAMERA_TAP_ZOOM_STATE_IDLE = 0, /*!< Camera is not in tap zoom process. */
UAV_CAMERA_TAP_ZOOM_STATE_ZOOM_IN = 1, /*!< Camera is zooming in. */
UAV_CAMERA_TAP_ZOOM_STATE_ZOOM_OUT = 2, /*!< Camera is zooming out. */
UAV_CAMERA_TAP_ZOOM_STATE_ZOOM_LIMITED = 3, /*!< Camera has reached zoom limit. */
} E_UAVCameraTapZoomState;
/**
* @brief Camera video stream type.
*/
typedef enum {
/*! Camera video stream by h264 custom format, which needs to comply with the user document Custom-H264 video stream format standard.
* When using this format to send a video stream, the bit rate of the video stream needs must not exceed the real-time bandwidth
* limit of the channel that feedback by interface #UAVPayloadCamera_GetVideoStreamState.*/
UAV_CAMERA_VIDEO_STREAM_TYPE_H264_CUSTOM_FORMAT = 0,
/*! Camera video stream by h264 UAV format, which needs to comply with the user document UAV-H264 video stream format standard.
* When using this format to send a video stream, the video stream will be recoded by aircraft. No need to dynamically adjust
* the bit rate to ensure the quality of transmission. But the bit rate of video stream can not exceed 8Mbps. */
UAV_CAMERA_VIDEO_STREAM_TYPE_H264_UAV_FORMAT = 1,
} E_UAVCameraVideoStreamType;
/**
* @brief Camera sdcard state.
*/
typedef struct {
bool isInserted; /*!< Specifies if the SD card is inserted in the camera. This parameter is boolean type. */
bool isVerified; /*!< Specifies if the SD card is verified as genuine. This parameter is boolean type. */
bool isInitializing; /*!< Specifies if the SD card is initializing. This parameter is boolean type. */
bool isReadOnly; /*!< Specifies if the SD card is read only type. This parameter is boolean type. */
bool isFormatting; /*!< Specifies if the SD card is in formatting process. This parameter is boolean type. */
bool isFull; /*!< Specifies if the SD card's capacity is full. This parameter is boolean type. */
bool isInvalidFormat;/*!< Specifies if the SD card is invalid formatted. This parameter is boolean type. */
bool hasError; /*!< Specifies if the SD card has error. This parameter is boolean type. */
uint32_t totalSpaceInMB; /*!< SD card total capacity, unit: MB. */
uint32_t remainSpaceInMB; /*!< SD card remaining capacity, unit: MB. */
uint32_t availableCaptureCount; /*!< Available capture photo count. */
uint32_t availableRecordingTimeInSeconds; /*!< Available video recording second time, unit: s. */
} T_UAVCameraSDCardState;
/**
* @brief Camera metering target when in spot metering mode.
*/
typedef struct {
float meteringX; /*!< Specifies horizontal zone coordinate. This parameter is between 0 and 1.
The point [0.0, 0.0] represents the top-left angle of the screen.*/
float meteringY; /*!< Specifies vertical zone coordinate. This parameter is between 0 and 1. */
} T_UAVCameraSpotMeteringTarget;
/**
* @brief Camera system state.
*/
typedef struct {
E_UAVCameraMode cameraMode; /*!< Specifies the camera current work mode, #E_UAVCameraMode. */
E_UAVCameraShootingState shootingState; /*!< Specifies the camera state of shooting, #E_UAVCameraShootingState. */
bool isStoring;/*!< Specifies if the camera is in storing status. This parameter is boolean type. */
bool isShootingIntervalStart; /*!< Specifies if the camera is in interval shooting start status. This parameter is boolean type. */
uint16_t currentPhotoShootingIntervalTimeInSeconds; /*!< Specifies the current interval shoot countdown time, the value is decreasing,
* when the value equals to zero trigger the interval take photo, uint:s. */
uint16_t currentPhotoShootingIntervalCount; /*!< Specifies the current interval photo count, the value is decreasing step by one from
* the setted count when interval taking photo */
bool isRecording; /*!< Specifies if the camera is in recording status. This parameter is boolean type. */
uint16_t currentVideoRecordingTimeInSeconds; /*!< Specifies the current recording process time, uint:s. */
bool isOverheating; /*!< Specifies if the camera is in overheating status. This parameter is boolean type. */
bool hasError; /*!< Specifies if the camera in error status. This parameter is boolean type. */
} T_UAVCameraSystemState;
/**
* @brief Camera focus assistant settings.
*/
typedef struct {
bool isEnabledMF; /*!< Specifies if the lens focus assistant is enabled for manual focusing. This parameter is boolean type. */
bool isEnabledAF; /*!< Specifies if the lens focus assistant is enabled for auto focusing. This parameter is boolean type. */
} T_UAVCameraFocusAssistantSettings;
/**
* @brief Camera playback status.
*/
typedef struct {
E_UAVCameraPlaybackMode playbackMode; /*!< Specifies the duration of video media file, #E_UAVCameraPlaybackMode. */
uint8_t videoPlayProcess; /*!< Specifies the current play process of video media file. This parameter is between 0 and 100. */
uint32_t videoLengthMs; /*!< Specifies the total duration of video media file, uint:ms. */
uint32_t playPosMs; /*!< Specifies the current play position of video media file, uint:ms. */
} T_UAVCameraPlaybackStatus;
/**
* @brief Camera focus assistant settings.
*/
typedef struct {
uint16_t attrVideoDuration; /*!< Specifies the playback duration of video media file, uint:s. */
uint16_t attrVideoFrameRate; /*!< Specifies the frame rate of video media file, uint:fps. */
uint16_t attrVideoResolution; /*!< Specifies the resolution of video media file, uint:px. */
} T_UAVCameraMediaFileAttr;
/**
* @brief Camera media file info.
*/
typedef struct {
E_UAVCameraMediaFileType type; /*!< Specifies the type of media file, #E_UAVCameraMediaFileType. */
T_UAVCameraMediaFileAttr mediaFileAttr; /*!< Specifies the attributes of media file. */
uint32_t fileSize; /*!< Specifies the size of media file, uint:byte. */
} T_UAVCameraMediaFileInfo;
/**
* @brief Camera tap zoom state.
*/
typedef struct {
E_UAVCameraTapZoomState zoomState; /*!< Camera zoom state. */
bool isGimbalMoving; /*!< Flag that specifies whether gimbal is moving for tap zoom. */
} T_UAVCameraTapZoomState;
/**
* @brief Camera common features handler.
* @warning User can not execute blocking style operations or functions in callback function, because that will block autel
* root thread, causing problems such as slow system response, payload disconnection or infinite loop.
*/
typedef struct {
/**
* @brief Prototype of callback function used to get camera system state.
* @param systemState: pointer to memory space used to store camera system state.
* @return Execution result.
*/
T_UAVReturnCode (*GetSystemState)(T_UAVCameraSystemState &systemState);
/**
* @brief Prototype of callback function used to set camera work mode.
* @note Sets the camera's work mode to taking pictures, video, playback. Please note that you cannot change the mode
* when a certain taskHandle is executing, such as taking photo(s), recording video, or downloading and saving files. Also
* supported by thermal imaging camera.
* @param mode: camera work mode.
* @return Execution result.
*/
T_UAVReturnCode (*SetMode)(E_UAVCameraMode mode);
/**
* @brief Prototype of callback function used to get camera current work mode.
* @param mode: pointer to memory space used to store camera work mode.
* @return Execution result.
*/
T_UAVReturnCode (*GetMode)(E_UAVCameraMode &mode);
/**
* @brief Prototype of callback function used to start record video.
* @return Execution result.
*/
T_UAVReturnCode (*StartRecordVideo)(void);
/**
* @brief Prototype of callback function used to stop record video.
* @return Execution result.
*/
T_UAVReturnCode (*StopRecordVideo)(void);
/**
* @brief Prototype of callback function used to start shoot photo.
* @return Execution result.
*/
T_UAVReturnCode (*StartShootPhoto)(void);
/**
* @brief Prototype of callback function used to stop shoot photo.
* @return Execution result.
*/
T_UAVReturnCode (*StopShootPhoto)(void);
/**
* @brief Prototype of callback function used to set camera shoot photo mode.
* @param mode: camera shoot photo mode.
* @return Execution result.
*/
T_UAVReturnCode (*SetShootPhotoMode)(E_UAVCameraShootPhotoMode mode);
/**
* @brief Prototype of callback function used to get camera current shoot photo mode.
* @param mode: pointer to memory space used to store camera shoot photo mode.
* @return Execution result.
*/
T_UAVReturnCode (*GetShootPhotoMode)(E_UAVCameraShootPhotoMode &mode);
/**
* @brief Prototype of callback function used to set camera shoot burst count.
* @param burstCount: camera shoot burst count.
* @return Execution result.
*/
T_UAVReturnCode (*SetPhotoBurstCount)(E_UAVCameraBurstCount burstCount);
/**
* @brief Prototype of callback function used to get camera current burst count.
* @param burstCount: pointer to memory space used to store camera shoot burst count.
* @return Execution result.
*/
T_UAVReturnCode (*GetPhotoBurstCount)(E_UAVCameraBurstCount &burstCount);
/**
* @brief Prototype of callback function used to set camera shoot time interval settings.
* @note The value range of interval photograph count is [2, 255]. If 255 is selected, then the camera will continue
* to take pictures until StopShootPhoto is called.
* @param settings: camera shoot time interval settings.
* @return Execution result.
*/
T_UAVReturnCode (*SetPhotoTimeIntervalSettings)(uint32_t timeIntervalSeconds);
/**
* @brief Prototype of callback function used to get camera shoot time interval settings.
* @param settings: pointer to memory space used to store camera shoot time interval settings.
* @return Execution result.
*/
T_UAVReturnCode (*GetPhotoTimeIntervalSettings)(uint32_t &timeIntervalSeconds);
/**
* @brief Prototype of callback function used to get camera current SDCard state.
* @param sdCardState: pointer to memory space used to store camera SDCard state.
* @return Execution result.
*/
T_UAVReturnCode (*GetSDCardState)(T_UAVCameraSDCardState &sdCardState);
/**
* @brief Prototype of callback function used to format the SDCard inserted.
* @return Execution result.
*/
T_UAVReturnCode (*FormatSDCard)(void);
} T_UAVCameraCommonHandler;
/**
* @brief Camera metering feature handler.
* @warning User can not execute blocking style operations or functions in callback function, because that will block autel
* root thread, causing problems such as slow system response, payload disconnection or infinite loop.
*/
typedef struct {
/**
* @brief Prototype of callback function used to set camera metering mode.
* @param mode: camera metering mode.
* @return Execution result.
*/
T_UAVReturnCode (*SetMeteringMode)(E_UAVCameraMeteringMode mode);
/**
* @brief Prototype of callback function used to get camera current metering mode.
* @param mode: pointer to memory space used to store camera metering mode.
* @return Execution result.
*/
T_UAVReturnCode (*GetMeteringMode)(E_UAVCameraMeteringMode &mode);
/**
* @brief Prototype of callback function used to set camera spot metering target area.
* @param target: camera spot metering target area.
* @return Execution result.
*/
T_UAVReturnCode (*SetSpotMeteringTarget)(T_UAVCameraPointInScreen target);
/**
* @brief Prototype of callback function used to get camera spot metering target area.
* @param target: pointer to memory space used to store camera spot metering target area.
* @return Execution result.
*/
T_UAVReturnCode (*GetSpotMeteringTarget)(T_UAVCameraPointInScreen &target);
} T_UAVCameraExposureMeteringHandler;
/**
* @brief Camera focus feature handler.
* @warning User can not execute blocking style operations or functions in callback function, because that will block autel
* root thread, causing problems such as slow system response, payload disconnection or infinite loop.
*/
typedef struct {
/**
* @brief Prototype of callback function used to set camera focus mode.
* @param mode: camera focus mode.
* @return Execution result.
*/
T_UAVReturnCode (*SetFocusMode)(E_UAVCameraFocusMode mode);
/**
* @brief Prototype of callback function used to get camera current focus mode.
* @param mode: pointer to memory space used to store camera focus mode.
* @return Execution result.
*/
T_UAVReturnCode (*GetFocusMode)(E_UAVCameraFocusMode &mode);
/**
* @brief Prototype of callback function used to set camera focus target area.
* @param target: camera focus target area.
* @return Execution result.
*/
T_UAVReturnCode (*SetFocusTarget)(T_UAVCameraPointInScreen target);
/**
* @brief Prototype of callback function used to get camera focus target area.
* @param target: pointer to memory space used to store camera focus target area.
* @return Execution result.
*/
T_UAVReturnCode (*GetFocusTarget)(T_UAVCameraPointInScreen &target);
/**
* @brief Prototype of callback function used to set camera focus assistant settings.
* @param settings: camera focus assistant settings.
* @return Execution result.
*/
T_UAVReturnCode (*SetFocusAssistantSettings)(T_UAVCameraFocusAssistantSettings settings);
/**
* @brief Prototype of callback function used to get camera focus assistant settings.
* @param settings: pointer to memory space used to store camera focus assistant settings.
* @return Execution result.
*/
T_UAVReturnCode (*GetFocusAssistantSettings)(T_UAVCameraFocusAssistantSettings &settings);
/**
* @brief Prototype of callback function used to set camera focus ring value.
* @param value: camera focus ring value.
* @return Execution result.
*/
T_UAVReturnCode (*SetFocusRingValue)(uint32_t value);
/**
* @brief Prototype of callback function used to get camera focus ring value.
* @param value: pointer to memory space used to store camera focus ring value.
* @return Execution result.
*/
T_UAVReturnCode (*GetFocusRingValue)(uint32_t &value);
/**
* @brief Prototype of callback function used to get camera focus upper bound ring value.
* @param value: pointer to memory space used to store camera focus upper bound value.
* @return Execution result.
*/
T_UAVReturnCode (*GetFocusRingValueUpperBound)(uint32_t &value);
} T_UAVCameraFocusHandler;
/**
* @brief Camera digital zoom feature handler.
* @warning User can not execute blocking style operations or functions in callback function, because that will block autel
* root thread, causing problems such as slow system response, payload disconnection or infinite loop.
*/
typedef struct {
/**
* @brief Prototype of callback function used to set camera digital zoom factor.
* @param factor: camera digital zoom factor.
* @return Execution result.
*/
T_UAVReturnCode (*SetDigitalZoomFactor)(autel_f32_t factor);
/**
* @brief Prototype of callback function used to get camera current digital zoom factor.
* @param factor: pointer to memory space used to store camera current digital zoom factor.
* @return Execution result.
*/
T_UAVReturnCode (*GetDigitalZoomFactor)(autel_f32_t &factor);
} T_UAVCameraDigitalZoomHandler;
/**
* @brief Camera optical zoom feature handler.
* @warning User can not execute blocking style operations or functions in callback function, because that will block autel
* root thread, causing problems such as slow system response, payload disconnection or infinite loop.
*/
typedef struct {
/**
* @brief Prototype of callback function used to set camera optical zoom focal length.
* @param focalLength: camera optical zoom focal length.
* @return Execution result.
*/
T_UAVReturnCode (*SetOpticalZoomFocalLength)(uint32_t focalLength);
/**
* @brief Prototype of callback function used to get camera optical zoom focal length.
* @param focalLength: pointer to memory space used to store camera optical zoom focal length.
* @return Execution result.
*/
T_UAVReturnCode (*GetOpticalZoomFocalLength)(uint32_t &focalLength);
/**
* @brief Prototype of callback function used to get camera optical zoom factor.
* @param factor: pointer to memory space used to store camera optical zoom factor.
* @return Execution result.
*/
T_UAVReturnCode (*GetOpticalZoomFactor)(autel_f32_t &factor);
/**
* @brief Prototype of callback function used to get camera optical zoom specifies.
* @param spec: pointer to memory space used to store camera optical zoom specifies.
* @return Execution result.
*/
T_UAVReturnCode (*GetOpticalZoomSpec)(T_UAVCameraOpticalZoomSpec &spec);
/**
* @brief Prototype of callback function used to start continuous optical zoom.
* @param direction: camera zoom direction.
* @param speed: camera zoom speed.
* @return Execution result.
*/
T_UAVReturnCode (*StartContinuousOpticalZoom)(E_UAVCameraZoomDirection direction, E_UAVCameraZoomSpeed speed);
/**
* @brief Prototype of callback function used to stop continuous optical zoom.
* @return Execution result.
*/
T_UAVReturnCode (*StopContinuousOpticalZoom)(void);
} T_UAVCameraOpticalZoomHandler;
/**
* @brief Prototype of handler functions for media file download and playback.
* @warning User can not execute blocking style operations or functions in callback function, because that will block autel
* root thread, causing problems such as slow system response, payload disconnection or infinite loop.
*/
typedef struct {
/**
* @brief Prototype of callback function used to get camera media file path.
* @warning The maximum length of path that users can pass in is 256, including end character '\0'.
* @param dirPath: pointer to memory space used to store camera media file path.
* @return Execution result.
*/
T_UAVReturnCode (*GetMediaFileDir)(char *dirPath);
/**
* @brief Prototype of callback function used to get the file info of the selected origin media file.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @param fileInfo: pointer to memory space used to store file info of the selected origin media file.
* @return Execution result.
*/
T_UAVReturnCode (*GetMediaFileOriginInfo)(const char *filePath, T_UAVCameraMediaFileInfo *fileInfo);
/**
* @brief Prototype of callback function used to get the data of the selected origin media file.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @param offset: the offset of origin file data that need get from the selected media file.
* @param length: the length of origin file data that need get from the selected media file.
* @param data: pointer to memory space used to store the selected origin media file.
* @return Execution result.
*/
T_UAVReturnCode (*GetMediaFileOriginData)(const char *filePath, uint32_t offset, uint32_t length, uint8_t *data);
/**
* @brief Prototype of callback function used to create the thumb nail of selected media file.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @return Execution result.
*/
T_UAVReturnCode (*CreateMediaFileThumbNail)(const char *filePath);
/**
* @brief Prototype of callback function used to get the file info of the created thumbnail.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @param fileInfo: pointer to memory space used to store file info of the created thumbnail.
* @return Execution result.
*/
T_UAVReturnCode (*GetMediaFileThumbNailInfo)(const char *filePath, T_UAVCameraMediaFileInfo *fileInfo);
/**
* @brief Prototype of callback function used to get the data of the created thumbnail.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @param offset: the offset of thumb nail data that need get from the selected media file.
* @param length: the length of thumb nail data that need get from the selected media file.
* @param data: pointer to memory space used to store the created thumbnail data.
* @return Execution result.
*/
T_UAVReturnCode (*GetMediaFileThumbNailData)(const char *filePath, uint32_t offset, uint32_t length,
uint8_t *data);
/**
* @brief Prototype of callback function used to destroy the created thumb nail of selected media file.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @return Execution result.
*/
T_UAVReturnCode (*DestroyMediaFileThumbNail)(const char *filePath);
/**
* @brief Prototype of callback function used to create the screen nail of selected media file.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @return Execution result.
*/
T_UAVReturnCode (*CreateMediaFileScreenNail)(const char *filePath);
/**
* @brief Prototype of callback function used to get the data of the created screen nail.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @param offset: the offset of screen nail data that need get from selected media file.
* @param length: the length of screen nail data that need get from selected media file.
* @param data: pointer to memory space used to store the created screen nail data.
* @return Execution result.
*/
T_UAVReturnCode (*GetMediaFileScreenNailData)(const char *filePath, uint32_t offset, uint32_t length,
uint8_t *data);
/**
* @brief Prototype of callback function used to get the file info of the created screen nail.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @param fileInfo: pointer to memory space used to store file info of the created screen nail.
* @return Execution result.
*/
T_UAVReturnCode (*GetMediaFileScreenNailInfo)(const char *filePath, T_UAVCameraMediaFileInfo *fileInfo);
/**
* @brief Prototype of callback function used to destroy the created screen nail of selected media file.
* @param dirPath: pointer to memory space used to store camera current media file path.
* @return Execution result.
*/
T_UAVReturnCode (*DestroyMediaFileScreenNail)(const char *filePath);
/**
* @brief Prototype of callback function used to notification when download starting.
* @note You can adjust the bandwidth proportion of each high speed channel in the notification callback.
* @return Execution result.
*/
T_UAVReturnCode (*StartDownloadNotification)(void);
/**
* @brief Prototype of callback function used to notification when download stoping.
* @note You can adjust the bandwidth proportion of each high speed channel in the notification callback.
* @return Execution result.
*/
T_UAVReturnCode (*StopDownloadNotification)(void);
/**
* @brief Prototype of callback function used to delete the user's media files.
* @param filePath: pointer to memory space used to store camera current media file path.
* @return Execution result.
*/
T_UAVReturnCode (*DeleteMediaFile)(char *filePath);
/**
* @brief Prototype of callback function used to get camera media playback status.
* @param status: pointer to memory space used to store camera media file path.
* @return Execution result.
*/
T_UAVReturnCode (*GetMediaPlaybackStatus)(T_UAVCameraPlaybackStatus *status);
/**
* @brief Prototype of callback function used to set the file path of media file that need playback.
* @param filePath: pointer to memory space used to store the file path of media file that need playback.
* @return Execution result.
*/
T_UAVReturnCode (*SetMediaPlaybackFile)(const char *filePath);
/**
* @brief Prototype of callback function used to start media video playback when camera work in playback mode.
* @return Execution result.
*/
T_UAVReturnCode (*StartMediaPlayback)(void);
/**
* @brief Prototype of callback function used to stop media video playback when camera work in playback mode.
* @return Execution result.
*/
T_UAVReturnCode (*StopMediaPlayback)(void);
/**
* @brief Prototype of callback function used to pause media video playback when camera work in playback mode.
* @return Execution result.
*/
T_UAVReturnCode (*PauseMediaPlayback)(void);
/**
* @brief Prototype of callback function used to seek to the playback position of media video when camera work in playback mode.
* @param playbackPosition: playback position of video media, unit: ms.
* @return Execution result.
*/
T_UAVReturnCode (*SeekMediaPlayback)(uint32_t playbackPosition);
} T_UAVCameraMediaDownloadPlaybackHandler;
/**
* @brief Prototype of handler functions for tap zooming.
* @note User can not execute blocking style operations or functions in callback function, like autelXPort_RotateSync()
* function, because that will block autel root thread, causing problems such as slow system response, payload
* disconnection or infinite loop.
*/
typedef struct {
/**
* @brief Prototype of callback function used to get tap zoom state.
* @param state: pointer to memory space used to store tap zoom state.
* @return Execution result.
*/
T_UAVReturnCode (*GetTapZoomState)(T_UAVCameraTapZoomState *state);
/**
* @brief Prototype of callback function used to enable or disable tap zoom function.
* @details autel application should response tap zoom command only if tap zoom function is enabled.
* @param enabledFlag: enabled flag.
* @return Execution result.
*/
T_UAVReturnCode (*SetTapZoomEnabled)(bool enabledFlag);
/**
* @brief Prototype of callback function used to get the flag that specifies whether tap zoom function has been
* enabled,
* @param enabledFlag: pointer to memory space used to store enabled flag.
* @return Execution result.
*/
T_UAVReturnCode (*GetTapZoomEnabled)(bool *enabledFlag);
/**
* @brief Prototype of callback function used to set multiplier of single tap zoom.
* @param multiplier: multiplier of single tap zoom.
* @return Execution result.
*/
T_UAVReturnCode (*SetTapZoomMultiplier)(uint8_t multiplier);
/**
* @brief Prototype of callback function used to get multiplier of single tap zoom.
* @param multiplier: pointer to memory space use to store multiplier of single tap zoom.
* @return Execution result.
*/
T_UAVReturnCode (*GetTapZoomMultiplier)(uint8_t *multiplier);
/**
* @brief Prototype of callback function used to trigger tap zoom.
* @details Users trigger tap zoom in screen of mobile end, this callback function will be called. Then, autel
* application should rotate gimbal to orientation of target point and zoom by specified multiplier.
* @param target: position information of target point in screen.
* @return Execution result.
*/
T_UAVReturnCode (*TapZoomAtTarget)(T_UAVCameraPointInScreen target);
} T_UAVCameraTapZoomHandler;
/* Exported functions --------------------------------------------------------*/
/**
* @brief Initialize the payload camera module.
* @note The interface is the total initialization interface of the camera module. The following interfaces are optional
* functions and can be freely selected according to the actual load device condition of the user. Before registering
* the optional interface, the interface must be initialized before the system can work normally. Interface initialization
* needs to be after autelCore_Init.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_Init(void);
/**
* @brief Register the handler for payload camera common function interfaces.
* @note This interface registers the camera's basic function interface, including camera camera, video, mode settings,
* SD card operation, camera status interface. Registration of this interface needs to be after UAVPayloadCamera_Init.
* @param cameraCommonHandler: pointer to the handler for payload camera common functions.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_RegCommonHandler(const T_UAVCameraCommonHandler *cameraCommonHandler);
/**
* @brief Register the handler for payload camera exposure and metering function interfaces.
* @note This interface registers the spot metering and exposure interface of the camera. It currently includes
* setting and acquiring the metering mode and metering area. Special attention must be paid to the limitations
* of the interface parameters. Registration of this interface needs to be after UAVPayloadCamera_Init.
* @param cameraExposureMeteringHandler: pointer to the handler for payload camera exposure and metering functions.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_RegExposureMeteringHandler(const T_UAVCameraExposureMeteringHandler
*cameraExposureMeteringHandler);
/**
* @brief Register the handler for payload camera focus function interfaces.
* @note This interface registers the camera's focus interface, which includes setting and acquiring the focus mode,
* focus area, and focus settings. Special attention must be paid to the interface parameters. Registration of
* this interface needs to be after UAVPayloadCamera_Init.
* @param cameraFocusHandler: pointer to the handler for payload camera focus functions.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_RegFocusHandler(const T_UAVCameraFocusHandler *cameraFocusHandler);
/**
* @brief Register the handler for payload camera digital zoom function interfaces.
* @note This interface registers the camera's digital zoom interface, which includes setting and obtaining the digital
* zoom zoom factor. Registering the load on this interface requires digital zoom. Registration of this interface
* needs to be after UAVPayloadCamera_Init.
* @param cameraDigitalZoomHandler: pointer to the handler for payload camera digital zoom functions.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_RegDigitalZoomHandler(const T_UAVCameraDigitalZoomHandler *cameraDigitalZoomHandler);
/**
* @brief Register the handler for payload camera optical zoom function interfaces.
* @note This interface registers the camera's optical zoom interface, which includes setting and acquiring optical zoom
* parameters, and a continuous zoom interface. Registering the load on this interface requires support for optical
* zoom. Registration of this interface needs to be after UAVPayloadCamera_Init.
* @param cameraOpticalZoomHandler: pointer to the handler for payload camera optical zoom functions.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_RegOpticalZoomHandler(const T_UAVCameraOpticalZoomHandler *cameraOpticalZoomHandler);
/**
* @brief Register handler functions for tap zoom function.
* @details Registration specifies autel application support tap zoom function.
* @param cameraTapZoomHandler: pointer to structure of handler functions for tap zoom function.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_RegTapZoomHandler(const T_UAVCameraTapZoomHandler *cameraTapZoomHandler);
/**
* @brief Register the handler for payload camera media download and playback function interfaces.
* @note Registering the camera playback and downloading related interfaces, mainly able to operate the media files of
* the user storage device online through the playback interface of the pilot. It can playback and download files
* of pictures and videos`. Currently, only media files in MP4 and JPG formats are supported.
* @param cameraMediaHandler: pointer to the handler for payload camera media download and playback functions.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_RegMediaDownloadPlaybackHandler(const T_UAVCameraMediaDownloadPlaybackHandler *cameraMediaHandler);
/*
* 1. 设置视频流格式(图传),编码格式,已实现
* */
/**
* @brief Set the type of camera video stream.
* @note The interface is used to set the camera video stream type. Must ensure the format of video stream conforms to
* the specified type in E_UAVCameraVideoStreamType, please refer to developer documentation for more details.
* @attention Set video stream type must before calling autelCore_ApplicationStart function, when calling this interface
* the thread will be blocked, and the maximum blocking time is 10s. If this interface is not called, the default video
* stream type ::UAV_CAMERA_VIDEO_STREAM_TYPE_H264_CUSTOM_FORMAT will be used.
* @param videoStreamType: camera video stream type.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_SetVideoStreamType(E_UAVCameraVideoStreamType videoStreamType);
/*
* 2. 获取推流地址及端口号,待实现
* */
/**
* @brief Get the network remote address for sending camera video stream.
* @note The interface is used to get the network remote address for sending camera video stream. You can get this info for another
* heterogeneous system to do somethings. This interface should be used after calling autelCore_Init function.
* @attention If you want use this interface, should call autelPlatform_RegHalNetworkHandler interface firstly, otherwise
* this interface will not work.
* @param ipAddr: the remote ip address for sending camera video stream.
* @param port: the remote port for sending camera video stream.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_GetVideoStreamRemoteAddress(char *ipAddr, uint16_t *port);
/*
* 3. 发送视频流数据(图传),已实现
* */
/**
* @brief Send the video to mobile end via video stream of the data channel. This function exists and can be used only in Linux.
* @note Must ensure actual bandwidth is less than bandwidth limitation of corresponding channel or stream, please
* refer to developer documentation and state of channel/stream for details related to bandwidth limitation. User can
* get state of "videoStream" channel via UAVPayloadCamera_GetVideoStreamState() function. If actual bandwidth
* exceeds the limitation or busy state is set, the user should stop transmitting data or decrease amount of data to be
* sent. Otherwise, data may be discarded.
* @param data: pointer to data to be sent.
* @param len: length of data to be sent via data stream, and it must be less than or equal to 65000, unit: byte.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_SendVideoStream(const uint8_t *data, uint16_t len);
/*
* 4. 获取视频流通道状态(图传),已实现
* */
/**
* @brief Get data transmission state of "videoStream" channel. User can use the state as base for controlling data
* transmission of video stream. This function exists and can be used only in Linux operation system.
* @param state: pointer to "videoStream" channel state.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_GetVideoStreamState(T_UAVDataChannelState *state);
/*
* 5. 推送照片视频信息(图传),已实现,参数待对齐
* */
/**
* @brief Push added media file information to aircraft system.
* @details After photography or recording video, users must push information of created media file immediately using
* this interface.
* @param filePath: pointer to path of added media file. Guaranteed to end with '\0'. Length of path have to be less
* than ::autel_FILE_PATH_SIZE_MAX bytes.
* @param mediaFileInfo: information of added media file.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_PushAddedMediaFileInfo(const char *filePath, T_UAVCameraMediaFileInfo mediaFileInfo);
/*
* 6. 推送照片视频信息(图传),已实现,参数待对齐
* */
/*
* 7. 获取负载类型,未实现
* */
/**
* @brief Get optical zoom specification of other camera payloads mounted on aircraft.
* @note Please refer to UAV documentation in UAV SDK developer website for details of conditions of use.
* @note If there is empty in requested position or payload do not have related information, the interface will return
* error.
* @param payloadPosition: position where payload mounted on.
* @param opticalZoomSpec: pointer to optical zoom specification.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_GetCameraOpticalZoomSpecOfPayload(E_UAVMountPosition payloadPosition,
T_UAVCameraOpticalZoomSpec *opticalZoomSpec);
/*
* 8. 获取相机等效焦距
* */
/**
* @brief Get hybrid zoom focal length of other camera payloads mounted on aircraft.
* @note Please refer to UAV documentation in UAV SDK developer website for details of conditions of use.
* @note If there is empty in requested position or payload do not have related information, the interface will return
* error.
* @param payloadPosition: position where payload mounted on.
* @param focalLength: Pointer to optical focal length, unit: 0.1mm.
* @return Execution result.
*/
T_UAVReturnCode UAVPayloadCamera_GetCameraHybridZoomFocalLengthOfPayload(E_UAVMountPosition payloadPosition,
uint16_t *focalLength);
#ifdef __cplusplus
}
#endif
#endif // UAV_PAYLOAD_CAMERA_H
/************************ (C) COPYRIGHT UAV Innovations *******END OF FILE******/