You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Image.apply_ufunc_across_bands requires that output dimensions, sizes, and dtypes are explicitly defined. To simplify usage, we could consider running a small piece of test data through the ufunc and inferring those parameters. This approach is taken by dask.array.apply_gufunc via apply_infer_dtype.
We may find there's a good reason that Dask doesn't attempt to infer dimensions or sizes, but I think this is worth a closer look.
The text was updated successfully, but these errors were encountered:
Currently
Image.apply_ufunc_across_bands
requires that output dimensions, sizes, and dtypes are explicitly defined. To simplify usage, we could consider running a small piece of test data through the ufunc and inferring those parameters. This approach is taken bydask.array.apply_gufunc
viaapply_infer_dtype
.We may find there's a good reason that Dask doesn't attempt to infer dimensions or sizes, but I think this is worth a closer look.
The text was updated successfully, but these errors were encountered: