flat array python code example
Example 1: python flat list from list of list
flat_list = [item for sublist in l for item in sublist]
flat_list = []
for sublist in l:
for item in sublist:
flat_list.append(item)
Example 2: flatten a list of lists python
flattened = [val for sublist in list_of_lists for val in sublist]
Example 3: flatten image python numpy
x_data = np.array( [np.array(cv2.imread(imagePath[i])) for i in range(len(imagePath))] )
pixels = x_data.flatten().reshape(1000, 12288)
print pixels.shape