pixel_map_c

grizli.utils_numba.interp.pixel_map_c(in_data, xi, yi, out_data, xo, yo)[source]

Fast pixel mapping from one image to another

Parameters
in_data2D array

Input data array

xi, yi1D arrays

Pixel indices of the second (x) and first (y) array indices

out_data2D array

Output array will be updated in place out_data[yo, xo] = in_data[yi, xi]

xo, yo1D arrays

Pixel indices of the second (x) and first (y) array indices

Returns
statusbool