Automated pictures using scripting gives different results than manual pictures
Posted: 09 Dec 2018, 17:04
I am taking a series of pictures at different exposures. The code can be found below.
The images I am obtaining are wildly different than the one taken manually. They are incredibly noisy and are not representative of the image being taken.
dir$ = "C:\Users\Desktop"
for timebase = 1 to 10
for time = 1 to 10
for i = 1 to 4
exposure$ = time*exp(-1*timebase)
Print "Taking a picture with an exposure of"+exposure$
f$ =
Camera.Start(exposure$)
Camera.Wait
Image.Rename(f$ + "_Image.fit")
Image.Save(dir$ + f$ + "_" + exposure$ + ".FIT")
next i
next time
next timebase
END
Any idea as to why this may be the case?
The images I am obtaining are wildly different than the one taken manually. They are incredibly noisy and are not representative of the image being taken.
dir$ = "C:\Users\Desktop"
for timebase = 1 to 10
for time = 1 to 10
for i = 1 to 4
exposure$ = time*exp(-1*timebase)
Print "Taking a picture with an exposure of"+exposure$
f$ =
Camera.Start(exposure$)
Camera.Wait
Image.Rename(f$ + "_Image.fit")
Image.Save(dir$ + f$ + "_" + exposure$ + ".FIT")
next i
next time
next timebase
END
Any idea as to why this may be the case?