# import # ------------------------------------------------------------------------------------------ import enum # ------------------------------------------------------------------------------------------ # MIAM project 2020 # ------------------------------------------------------------------------------------------ # author: remi.cozot@univ-littoral.fr # ------------------------------------------------------------------------------------------ class imageType(enum.Enum): """ Enum image type: SDR, RAW, HDR """ SDR = 0 # SDR image: (.jpg) RAW = 1 # raw image file: sony ARW (.arw) HDR = 2 # hdr file: (.hdr)