imageType.py 621 B

123456789101112131415
  1. # import
  2. # ------------------------------------------------------------------------------------------
  3. import enum
  4. # ------------------------------------------------------------------------------------------
  5. # MIAM project 2020
  6. # ------------------------------------------------------------------------------------------
  7. # author: remi.cozot@univ-littoral.fr
  8. # ------------------------------------------------------------------------------------------
  9. class imageType(enum.Enum):
  10. """ Enum image type: SDR, RAW, HDR """
  11. SDR = 0 # SDR image: (.jpg)
  12. RAW = 1 # raw image file: sony ARW (.arw)
  13. HDR = 2 # hdr file: (.hdr)