1 | initial version |
you really have to learn numpy (not ask around, or make issues all over github ...)
this is a really trivial case:
for i in train_x.shape[0]:
cv2.imwrite("plane"+str(i)+".png", train_x[i])
2 | No.2 Revision |
you really have to learn numpy (not ask around, or make issues all over github ...)
this is a really trivial case:
for i in train_x.shape[0]:
range(train_x.shape[0]):
cv2.imwrite("plane"+str(i)+".png", train_x[i])