Answers for "convert plt image to numpy"

0

convert plt image to numpy

canvas = pyplot.gca().figure.canvas
canvas.draw()
data = numpy.frombuffer(canvas.tostring_rgb(), dtype=numpy.uint8)
image = data.reshape(canvas.get_width_height()[::-1] + (3,))
Posted by: Guest on May-19-2021

Browse Popular Code Answers by Language