Answers for "imshow rgb data"

1

Clipping input data to the valid range for imshow suppress

Add astype('uint8'):
	plt.imshow(results.astype('uint8'))
Posted by: Guest on April-20-2020

Browse Popular Code Answers by Language