I am dealing with numpy arrays of shape (nb, 128, 128, 3) where nb is a variable quantity. I am looking for a way to concatenate them.
An example input: Two numpy arrays with shapes (1088, 128, 128, 3) and (823, 128, 128, 3).
Now, the shape of the output array after the desired operation should be (1911, 128, 128, 3).
Note: The number of numpy arrays to be concatenated could be variable.
Thank you for your time in advance.
concatenate