Answers for "3d array flat"

1

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
Posted by: Guest on September-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language