Skip to content

Commit

Permalink
Fix output filename in color code. Create setup.py for use with py2exe.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Beckman authored and Jeff Beckman committed Nov 14, 2014
1 parent f9938d2 commit 1642225
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jpgSubtractionColor.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

subtracted = np.subtract(before,after)

misc.imsave('subtracted.jpg',subtracted)
misc.imsave('subtractedColor.jpg',subtracted)
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
"""
Created on Fri Nov 14 09:04:04 2014
@author: JBeckman
"""

from distutils.core import setup
import py2exe

setup(console=['jpgSubtractionColor.py'])

0 comments on commit 1642225

Please sign in to comment.