Skip to content

Commit

Permalink
modified: Julia/fits_upsample2D.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
jvo203 committed Aug 18, 2022
1 parent c1b5dd4 commit 7d437b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Julia/fits_upsample2D.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using CFITSIO
using ImageTransformations

println(libcfitsio_version())
println("CFITSIO version: ", libcfitsio_version())

src = homedir() * "/Downloads/smiley.fits"
dst = homedir() * "/Downloads/smiley_upsampled.fits"
Expand Down Expand Up @@ -35,8 +35,8 @@ height = parse(Int64, height)
println("width: $(width), height: $(height)")

# new dimensions
new_width = 26300 * width
new_height = 26300 * height
new_width = 26300
new_height = 26300

println("new width: $new_width, new_height: $new_height")

Expand Down

0 comments on commit 7d437b1

Please sign in to comment.