Numpy image - rotate matrix 270 degrees
You can tell rot90
to rotate several times, this should work:
rotated = numpy.rot90(orignumpyarray,3)
You can tell rot90
to rotate several times, this should work:
rotated = numpy.rot90(orignumpyarray,3)