Dieses Projekt dient der digitalen Umwandlung von Bildern in simulierte Darstellung aus Sicht eines rot-grün-blinden Menschen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dyschromasie.py 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import cv2 # OpenCV fuer Bildbearbeitung
  2. import tkinter # Zum Erstellen von GUIs
  3. import numpy as np # Numpy Import
  4. import sys
  5. from PIL import Image, ImageTk #Wichtig zum Anzeigen der Bilder im GUI
  6. # Einlesen des Bildes
  7. script_dir = sys.path[0]
  8. path = script_dir[:-4] + "Beispielbilder\grocery_store.jpg"
  9. image = cv2.cvtColor(cv2.imread(path),cv2.COLOR_BGR2RGB) # Einlesen des Bildes (noch hardcodiert, sollte dann in GUI gehen)
  10. rows = image.shape[0] # Auslesen der Zeilenanzahl
  11. cols = image.shape[1] # Auslesen der Spaltenanzahl
  12. kanaele = image.shape[2] # Auslesen der Kanaele (3 fuer RGB, 1 fuer Graubild)
  13. def gammaCorrection(v):
  14. if v <= 0.04045 * 255:
  15. return float(((v / 255) / 12.92))
  16. elif v > 0.04045 * 255:
  17. return float((((v / 255) + 0.055) / 1.055) ** 2.4)
  18. else:
  19. print("Ungültiger Wert!!")
  20. return 1
  21. def reverseGammaCorrection(v_reverse):
  22. if v_reverse <= 0.0031308:
  23. return int(255 * (12.92 * v_reverse))
  24. elif v_reverse > 0.0031308:
  25. return int(255 * (1.055 * v_reverse ** 0.41666 - 0.055))
  26. else:
  27. print("Ungültiger Wert!!!")
  28. return 1
  29. cb_image = np.copy(image) # Kopie des Bildarrays
  30. cb_image = cb_image.astype('float64') # Casting des Arrays auf Float
  31. # Korrektur des Gamma Faktors für alle Bildelemente
  32. for i in range(rows):
  33. for j in range(cols):
  34. for x in range(3):
  35. cb_image[i, j, x] = gammaCorrection(float(image[i, j, x]))
  36. '''
  37. 0.31399022 0.63951294 0.04649755 Transformationsmatrix zum Konvertieren vom linearen RGB zum LMS Farbraum
  38. T = 0.15537241 0.75789446 0.08670142 Multiplikation aus Brucelindbloom und Hunt-Pointer-Estevez Matrixen
  39. 0.01775239 0.10944209 0.87256922 T*RGB_Farbverktor = LMS_Farbvektor
  40. '''
  41. T = np.array([[0.31399022, 0.63951294, 0.04649755],
  42. [0.15537241, 0.75789446, 0.08670142],
  43. [0.01775239, 0.10944209, 0.87256922]])
  44. '''
  45. 5.47221206 −4.6419601 0.16963708 Rücktransformationsmatrix (Inverse von T)
  46. T_reversed = -1.1252419 2.29317094 −0.1678952 T_reversed Ü LMS_Farbvektor = RBG_Farbvektor
  47. 0.02980165 −0.19318073 1.16364789
  48. '''
  49. T_reversed = np.array([[5.47221206, -4.6419601, 0.16963708],
  50. [-1.1252419, 2.29317094, -0.1678952],
  51. [0.02980165, -0.19318073, 1.16364789]])
  52. S_p = np.array([[0, 1.05118294, -0.05116099], #Simulationsmatrix fuer Protanopie
  53. [0, 1, 0],
  54. [0, 0, 1]])
  55. S_d = np.array([[1, 0, 0], #Simulationsmatrix fuer Deuteranopie
  56. [0.9513092, 0, 0.04866992],
  57. [0, 0, 1]])
  58. S_t = np.array([[1, 0, 0], #Simulationsmatrix fuer Tritanopie
  59. [0, 1, 0],
  60. [-0.86744736, 1.86727089, 0]])
  61. #Multiplikation der einzelnen Pixel
  62. for i in range(rows):
  63. for j in range(cols):
  64. cb_image[i,j] = T_reversed.dot(S_t).dot(T).dot(cb_image[i,j])
  65. sim_image = np.copy(cb_image)
  66. sim_image = sim_image.astype('uint8')
  67. #Rücktransformation der Gammawerte
  68. for i in range(rows):
  69. for j in range(cols):
  70. for x in range(3):
  71. sim_image[i, j, x] = reverseGammaCorrection(cb_image[i, j, x])
  72. cv2.namedWindow("Display") # Displaywindow erstellen
  73. cv2.imshow("Display", cv2.cvtColor(sim_image,cv2.COLOR_RGB2BGR)) # Bild zeigen
  74. cv2.waitKey(0) # Fenster offen halten