StellarCartography / pydis

DEPRECATED: Check out PyKOSMOS!
https://github.com/jradavenport/pykosmos
MIT License
43 stars 27 forks source link

ReduceTwo not breaking gracefully #41

Open kweis opened 8 years ago

kweis commented 8 years ago

Please add more grace when trying to handle a bias/flat/image list with uneven image sizes. Numpy doesn't care to concatenate differently sized images and fails on line 189 in biascombine:

ERROR: ValueError: all the input array dimensions except for the concatenation axis must match exactly [numpy.lib.shape_base] Traceback (most recent call last): File "", line 1, in File "//anaconda/lib/python2.7/site-packages/pydis/wrappers.py", line 402, in ReduceTwo bias = pydis.biascombine(biaslist, trim=trim) File "//anaconda/lib/python2.7/site-packages/pydis/pydis.py", line 189, in biascombine all_data = np.dstack( (all_data, im_i) ) File "//anaconda/lib/python2.7/site-packages/numpy/lib/shape_base.py", line 367, in dstack return _nx.concatenate([atleast_3d(_m) for _m in tup], 2) ValueError: all the input array dimensions except for the concatenation axis must match exactly

kweis commented 8 years ago

I suspect this problem is true for all image reduction so add a warning or error message to all bias/flat reduction sections

HeisenbergK commented 4 years ago

Hello, do we have any news on that? I'm trying to do a bias combine and get the same error

jradavenport commented 4 years ago

No work has been done on this, but my understanding is this occurs if the shapes are different between images... what kind of data are you trying to reduce? (where is it from, what shape is it?)