I have a list say, temp_list with following properties :
len(temp_list) = 9260 temp_list[0].shape = (224,224,3)
Now, when I am conver
You can covert numpy.ndarray to object using astype(object)
numpy.ndarray
object
astype(object)
This will work:
>>> a = [np.zeros((224,224,3)).astype(object), np.zeros((224,224,3)).astype(object), np.zeros((224,224,13)).astype(object)]