最佳答案
我有一个名为 temp _ list 的列表,它具有以下属性:
len(temp_list) = 9260
temp_list[0].shape = (224,224,3)
现在,当我转换成 numpy 数组时,
x = np.array(temp_list)
我得到了一个错误:
ValueError: could not broadcast input array from shape (224,224,3) into shape (224,224)
有人能帮帮我吗?