def display_image(image):
"""Display an image object.
Remarks: Some RGB images might be displayed with changed colors.
Parameters
----------
image : IPython.display.Image
The image to display.
"""
if image is None:
return
display(image)
评论列表
文章目录