public static final enum

DJICameraSettingsDef.CameraPhotoFileFormat

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ dji.common.camera.DJICameraSettingsDef.CameraPhotoFileFormat

Class Overview

Camera photo storage formats. The default value is JPEG.

Summary

Enum Values
DJICameraSettingsDef.CameraPhotoFileFormat  JPEG  The camera's photo storage format is JPEG. 
DJICameraSettingsDef.CameraPhotoFileFormat  RAW  The camera's photo storage format is RAW. 
DJICameraSettingsDef.CameraPhotoFileFormat  RAWAndJPEG  The camera's photo storage format stores both the RAW and JPEG formats of the photo. 
DJICameraSettingsDef.CameraPhotoFileFormat  RadiometricJPEG  The camera's photo storage format is Radiometric JPEG (a special JPEG format with temperature information). 
DJICameraSettingsDef.CameraPhotoFileFormat  TIFF14Bit  The camera's photo storage format is TIFF (14bit). 
DJICameraSettingsDef.CameraPhotoFileFormat  TIFF14BitLinearHighTempResolution  The camera's photo storage format is TIFF Linear High. 
DJICameraSettingsDef.CameraPhotoFileFormat  TIFF14BitLinearLowTempResolution  The camera's photo storage format is TIFF Linear Low. 
DJICameraSettingsDef.CameraPhotoFileFormat  Unknown  The camera's photo storage format is unknown. 
Public Methods
boolean _equals(int b)
Compares the input integer value with the real value of an enum value.
static DJICameraSettingsDef.CameraPhotoFileFormat find(int value)
Returns the enum constant of this type with the input integer value.
int value()
Returns the real value of an enum value.
static DJICameraSettingsDef.CameraPhotoFileFormat valueOf(String name)
final static CameraPhotoFileFormat[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final DJICameraSettingsDef.CameraPhotoFileFormat JPEG

The camera's photo storage format is JPEG.

public static final DJICameraSettingsDef.CameraPhotoFileFormat RAW

The camera's photo storage format is RAW.

public static final DJICameraSettingsDef.CameraPhotoFileFormat RAWAndJPEG

The camera's photo storage format stores both the RAW and JPEG formats of the photo.

public static final DJICameraSettingsDef.CameraPhotoFileFormat RadiometricJPEG

The camera's photo storage format is Radiometric JPEG (a special JPEG format with temperature information). A radiometric JPEG has the .jpg suffix and can be viewed as a normal JPEG file would. At the same time, the temperature data is also stored in the file as meta data. PC software is required to analyze the file and it is accessible at FLIR's website http://www.flir.com/instruments/display/?id=54865 . Only supported by XT camera with firmware version 1.16.1.70 or above.

public static final DJICameraSettingsDef.CameraPhotoFileFormat TIFF14Bit

The camera's photo storage format is TIFF (14bit). Supported only by XT camera.

public static final DJICameraSettingsDef.CameraPhotoFileFormat TIFF14BitLinearHighTempResolution

The camera's photo storage format is TIFF Linear High. In this mode each pixel is 14 bits and linearly proportional with temperature, covering a low dynamic range of temperture which results in a higher temperature resolution. Only supported by the advanced radiometry version XT camera.

public static final DJICameraSettingsDef.CameraPhotoFileFormat TIFF14BitLinearLowTempResolution

The camera's photo storage format is TIFF Linear Low. In this mode each pixel is 14 bits and linearly proportional with temperature, covering a high dynamic range of temperture which results in a lower temperature resolution. Only supported by the advanced radiometry version XT camera.

public static final DJICameraSettingsDef.CameraPhotoFileFormat Unknown

The camera's photo storage format is unknown.

Public Methods

public boolean _equals (int b)

Compares the input integer value with the real value of an enum value.

Parameters
b The input integer value.
Returns
  • boolean The compared result.

public static DJICameraSettingsDef.CameraPhotoFileFormat find (int value)

Returns the enum constant of this type with the input integer value.

Parameters
value The input integer value
Returns
  • The enum constant of this type

public int value ()

Returns the real value of an enum value.

Returns
  • integer The real value

public static DJICameraSettingsDef.CameraPhotoFileFormat valueOf (String name)

public static final CameraPhotoFileFormat[] values ()