Processing.py 598 B

12345678910111213141516
  1. # import
  2. # ------------------------------------------------------------------------------------------
  3. import copy
  4. # ------------------------------------------------------------------------------------------
  5. # MIAM project 2020
  6. # ------------------------------------------------------------------------------------------
  7. # author: remi.cozot@univ-littoral.fr
  8. # ------------------------------------------------------------------------------------------
  9. class Processing(object):
  10. """tone mapping operator"""
  11. def compute(self, image, **kwargs):
  12. return copy.deepcopy(image)