i_colors_enhance.py 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. """
  2. ***************************************************************************
  3. i_colors_enhance.py
  4. -------------------
  5. Date : March 2016
  6. Copyright : (C) 2016 by Médéric Ribreux
  7. Email : medspx at medspx dot fr
  8. ***************************************************************************
  9. * *
  10. * This program is free software; you can redistribute it and/or modify *
  11. * it under the terms of the GNU General Public License as published by *
  12. * the Free Software Foundation; either version 2 of the License, or *
  13. * (at your option) any later version. *
  14. * *
  15. ***************************************************************************
  16. """
  17. __author__ = 'Médéric Ribreux'
  18. __date__ = 'March 2016'
  19. __copyright__ = '(C) 2016, Médéric Ribreux'
  20. from .i import exportInputRasters
  21. def processCommand(alg, parameters, context, feedback):
  22. # Temporary remove outputs:
  23. alg.processCommand(parameters, context, feedback, True)
  24. def processOutputs(alg, parameters, context, feedback):
  25. # Input rasters are output rasters
  26. rasterDic = {'red': 'redoutput', 'green': 'greenoutput', 'blue': 'blueoutput'}
  27. exportInputRasters(alg, parameters, context, rasterDic)