how to stop printingClipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers). code example
Example: Clipping input data to the valid range for imshow suppress
Add astype('uint8'):
plt.imshow(results.astype('uint8'))