Kommentar entfernt

This commit is contained in:
Max Sponsel 2020-08-15 09:18:51 +02:00
parent 28325c408e
commit 8c4760c75d

View File

@ -78,7 +78,6 @@ S_t = np.array([[1, 0, 0], #Simulationsmatrix fuer Tritanopi
for i in range(rows):
for j in range(cols):
cb_image[i,j] = T_reversed.dot(S_p).dot(T).dot(cb_image[i,j])
# Da OpenCV Pixelwerte in RGB speichert, aber BGR für den Algorithmus nötig ist, muss die Matrix mit flipud gedreht werden
sim_image = np.copy(cb_image)
sim_image = sim_image.astype('uint8')