[fix] exceptions for redilisys colors filter

This commit is contained in:
alban 2020-10-13 22:01:46 +02:00
parent 0b7ad2d75b
commit df068b8e30
1 changed files with 5 additions and 3 deletions

8
clitools/filters/redilysis_colors.py Normal file → Executable file
View File

@ -1,4 +1,3 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# -*- mode: Python -*-
@ -145,8 +144,11 @@ def default( pl ):
colorTuple = int2rgb(ocolor)
x = point[0]
dist = abs(x - max_width/2)
key = int(2* dist / max_width * 8)
power = spect[key] / spect10Correct[key] * chaos
key = int(2* dist / max_width * 7)
try:
power = spect[key] / spect10Correct[key] * chaos
except:
pass
color = []
for i in colorTuple:
new_color = int(i * power)