Answers for "numpy flatten last two dimensions"

3

numpy flatten

>>> a = np.array([[1,2], [3,4]])
>>> a.flatten()
array([1, 2, 3, 4])
>>> a.flatten('F')
array([1, 3, 2, 4])
Posted by: Guest on December-08-2020
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