accuracy issues with numpy arrays?

E

eli

Hi,

I'm writing a quick script to import a fits (astronomy) image that has
very low values for each pixel. Mostly on the order of 10^-9. I have
written a python script that attempts to take low values and put them
in integer format. I basically do this by taking the mean of the 1000
lowest pixel values, excluding zeros, and dividing the rest of the
image by that mean. Unfortunately, when I try this in practice, *all*
of the values in the image are being treated as zeros. But, if I doFor
example, I take the pixel that I know has the highest value and do

x = scipy.ndimage.maximum(image)
print x
1.7400700016878545e-05

The script is below. Thanks for the help.

Eli



import pyfits as p
import scipy as s
import scipy.ndimage as nd
import numpy as n


def flux2int(name):
d = p.getdata(name)
x,y = n.shape(d)
l = x*y
arr1 = n.array(d.reshape(x*y,1))
temp = n.unique(arr1[0]) # This is where the bug starts. All values
are treated as zeros. Hence only one value remains, zero.
arr1 = arr1.sort()
arr1 = n.array(arr1)
arr1 = n.array(arr1[s.where(arr1 >= temp)])

val = n.mean(arr1[0:1000])

d = d*(1.0/val)
d = d.round()
p.writeto(name[0,]+'fixed.fits',d,h)
 
R

Robert Kern

You will want to ask numpy questions on the numpy mailing list:

http://www.scipy.org/Mailing_Lists

I need a little more time to mull on your problem to give you an actual answer,
but I hope I can do that over there instead of here.

--
Robert Kern

"I have come to believe that the whole world is an enigma, a harmless enigma
that is made terrible by our own mad attempt to interpret it as though it had
an underlying truth."
-- Umberto Eco
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,777
Messages
2,569,604
Members
45,225
Latest member
Top Crypto Podcasts

Latest Threads

Top