import numpy as np a = np.array([[[1,2,3],[4,5,6]]]) print(a) print(a.shape) target_region = np.expand_dims(a, 0) print(target_region) ...
確定! 回上一頁