UNPKG

theta-client-react-native

Version:

This library provides a way to control RICOH THETA using.

30 lines 1.43 kB
/** * Still image stitching setting during shooting. * * For Theta X, Z1 and V. **/ export declare const ImageStitchingEnum: { /** Refer to stitching when shooting with "auto" */ readonly AUTO: "AUTO"; /** Performs static stitching */ readonly STATIC: "STATIC"; /** Performs dynamic stitching(RICOH THETA X or later) */ readonly DYNAMIC: "DYNAMIC"; /** For Normal shooting, performs dynamic stitching, * for Interval shooting, saves dynamic distortion correction parameters for the first image * and then uses them for the 2nd and subsequent images(RICOH THETA X is not supported) */ readonly DYNAMIC_AUTO: "DYNAMIC_AUTO"; /** Performs semi-dynamic stitching * Saves dynamic distortion correction parameters for the first image * and then uses them for the 2nd and subsequent images(RICOH THETA X or later) */ readonly DYNAMIC_SEMI_AUTO: "DYNAMIC_SEMI_AUTO"; /** Performs dynamic stitching and then saves distortion correction parameters */ readonly DYNAMIC_SAVE: "DYNAMIC_SAVE"; /** Performs stitching using the saved distortion correction parameters */ readonly DYNAMIC_LOAD: "DYNAMIC_LOAD"; /** Does not perform stitching */ readonly NONE: "NONE"; }; /** Type definition of ImageStitchingEnum */ export type ImageStitchingEnum = (typeof ImageStitchingEnum)[keyof typeof ImageStitchingEnum]; //# sourceMappingURL=option-image-stitching.d.ts.map