if noise is None or noise <= 0:
                rgb_arr += back_col
            else:
                bckg = _np.random.normal(back_col, noise, (len(rgb_arr), len(rgb_arr[0])))
                rgb_arr += bckg[:, :, _np.newaxis]