I need to create an empty numpy array of a shape (?, 10, 10, 3)
. ?
means I don't know how many elements will be inserted. Then I have many numpy arrays of a shape (1, 10, 10, 3)
which I want to be inserted to the prepared array one by one, so the ?
mark will be increasing with inserted elements.
I'm trying all variations of numpy array methods like empty
, insert
, concatenate
, append
... but I'm not able to achieve this. Could you please give me a hand with this?