Skip to content
Snippets Groups Projects
Commit f0c1703f authored by Taddeüs Kroes's avatar Taddeüs Kroes
Browse files

ImProc ass3: Fixed imports for Windows.

parent 662b5313
No related branches found
No related tags found
No related merge requests found
...@@ -15,3 +15,4 @@ robotica/ ...@@ -15,3 +15,4 @@ robotica/
*.swp *.swp
*.toc *.toc
*# *#
*~
#!/usr/bin/env python #!/usr/bin/env python
from pylab import zeros, imread from numpy import zeros
from matplotlib.pyplot import imread
def col2bin(color): def col2bin(color):
return tuple(map(lambda x: round(x - 1), color)) return tuple(map(lambda x: round(x - 1), color))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment