pull/1/head
E. Almqvist 4 years ago
parent f916b20d70
commit 3761927923
  1. 7
      lib/func.py
  2. 1
      main.py

@ -0,0 +1,7 @@
import numpy as np
def sigmoid(x):
return 1/(1 + np.exp(-x))
def correctFunc(rgb):
return ( rgb[0], rgb[1], rgb[2] )

@ -0,0 +1 @@
#!/usr/bin/env python
Loading…
Cancel
Save