def rgb(
x:ndarray, # Array to display. [[...], C,H,W] or [[...], H,W,C]
denorm:Any=None, # Reverse per-channel normalization
cl:Any=True, # Channel-last
gutter_px:int=3, # If more than one tensor -> tile with this gutter width
frame_px:int=1, # If more than one tensor -> tile with this frame width
scale:int=1, # Stretch the image. Only integers please.
view_width:int=966, # target width of the image
clip:bool=True, # Silently clip RGB values to [0, 1]
ax:Optional=None, # Matplotlib axes
)->RGBProxy: