Hi all,
I’m trying to rewrite the following python code to julia.
import numpy as np
import cv2
import matplotlib.pyplot as plt
img = cv2.imread('/home/julia_Hands_on/cat3.jpg')
img_tinted = img * [1, 0.95, 0.9]
# Show the original image
plt.subplot(1, 2, 1)
plt.imshow(img)
# Show the tinted image
plt.subplot(1, 2, 2)
plt.imshow(np.uint8(img_tinted))
plt.show()
In python, we have plt.subplot
to display images in sub. Simililarly, how can we subplot images in Julia using Plot?