MeiCam SDK For iOS  3.10.0
NvsCaptureSceneInfo.h
Go to the documentation of this file.
1 //================================================================================
2 //
3 // (c) Copyright China Digital Video (Beijing) Limited, 2021. All rights reserved.
4 //
5 // This code and information is provided "as is" without warranty of any kind,
6 // either expressed or implied, including but not limited to the implied
7 // warranties of merchantability and/or fitness for a particular purpose.
8 //
9 //--------------------------------------------------------------------------------
10 // Birth Date: Dec 07. 2021
11 // Author: NewAuto video team
12 //================================================================================
13 
14 #pragma once
15 
16 #import <Foundation/Foundation.h>
17 #import "NvsCommonDef.h"
18 
26 NVS_EXPORT @interface NvsClipData : NSObject
27 
28 @property (nonatomic) float pan;
29 @property (nonatomic) float scan;
30 @property (nonatomic) NSString* mediaPath;
31 @property (nonatomic) NSString* imageFillMode;
32 
33 @end
34 
43 NVS_EXPORT @interface NvsCaptureSceneInfo : NSObject
44 
45 @property (nonatomic, strong) NSMutableArray<NvsClipData *> *backgroundClipArray;
46 @property (nonatomic, strong) NSMutableArray<NvsClipData *> *foregroundClipArray;
47 
48 @end
NvsClipData
clip data
Definition: NvsCaptureSceneInfo.h:27
NvsClipData::scan
float scan
scan For details, please refer to the topic of Pan and Scan.
Definition: NvsCaptureSceneInfo.h:29
NvsClipData::pan
float pan
pan For details, please refer to the topic of Pan and Scan.
Definition: NvsCaptureSceneInfo.h:28
NVS_EXPORT
#define NVS_EXPORT
Definition: NvsCommonDef.h:20
NvsCommonDef.h
NvsCaptureSceneInfo
Capture scene informations.
Definition: NvsCaptureSceneInfo.h:44
NvsClipData::imageFillMode
NSString * imageFillMode
image fill mode,include "fit", "letterBox", "crop" and "stretch"
Definition: NvsCaptureSceneInfo.h:31
NvsClipData::mediaPath
NSString * mediaPath
media path
Definition: NvsCaptureSceneInfo.h:30