Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eaydin committed May 21, 2017
1 parent f830035 commit ae4dbbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ a.read_exit()
# Convert dcraw output to Numpy Array using netpbm
im_ppm = a.read_pbm(a.pbm_bytes)
# Since we want only one channel (ex. Red) use get_color
im_red = a.get_color(im_ppm, a.colorInput)
# Since we want only one channel (ex. Blue) use get_color
im_blue = a.get_color(im_ppm, a.colorInput)
# Create FITS file from Red Image and EXIF data
fits_image = a.create_fits(im_red)
# Create FITS file from Blue Image and EXIF data
fits_image = a.create_fits(im_blue)
# If you want to write output, _generate_destination gets filename
dest = a._generate_destination(a.filename, a.colorInput)
Expand Down

0 comments on commit ae4dbbb

Please sign in to comment.