# Enumeration ImageCaptureDistanceMode

`ImageCaptureDistanceMode` describes the shooting mode of the image. It is used in the `overlap` mode of `Panorama`.

```java
@Retention(RetentionPolicy.CLASS)
public @interface EnumImageCaptureDistanceMode {
    //The image is taken by close-up shot camera.
    int ICDM_NEAR = 0;
    //The image is taken by long shot camera.
    int ICDM_FAR = 1;
}
```
