Enumeration ImageCaptureDistanceMode
ImageCaptureDistanceMode describes the shooting mode of the image. It is used in the overlap mode of Panorama.
- Objective-C
- Swift
typedef NS_ENUM(NSInteger, DSImageCaptureDistanceMode) { /** The image is taken by close-up shot camera. */ DSImageCaptureDistanceModeNear, /** The image is taken by long shot camera. */ DSImageCaptureDistanceModeFar };public enum ImageCaptureDistanceMode : Int { /** The image is taken by close-up shot camera. */ case near /** The image is taken by long shot camera. */ case far }