@@ -62,7 +62,7 @@ class Dyschromasie: | |||
self.cb_image[i, j, x] = gammaCorrection(self.img_mat[i, j, x]) | |||
rechen_Mat = np.copy(self.T_reversed.dot(sim_mat).dot(self.T)) | |||
print(rechen_Mat) | |||
# Einzelne Pixelwertberechnung | |||
for i in range(self.rows): | |||
for j in range(self.cols): | |||
@@ -76,6 +76,4 @@ class Dyschromasie: | |||
for x in range(3): | |||
self.sim_image[i, j, x] = reverseGammaCorrection(self.cb_image[i, j, x]) | |||
print(self.img_mat[78, 86]) | |||
print(self.sim_image[78, 86]) | |||
return self.sim_image |