python
from google.colab import files
from google.colab import drive
drive.mount('/content/drive')
img = cv2.imread("/content/drive/My Drive/Colab Notebooks/img/Lenna.bmp")
img2 = cv2.imread("/content/drive/My Drive/Colab Notebooks/img/Mandrill.bmp")
python
import cv2 #opencv
import matplotlib.pyplot as plt
%matplotlib inline
python
#Créer une nouvelle fenêtre
fig = plt.figure()
#X tout le flg*Divisez en Y et placez l'image à la position du tracé.
X = 2
Y = 2
#Affichage de l'img
imgplot = 1
ax1 = fig.add_subplot(X, Y, imgplot)
#Réglage du titre
ax1.set_title("img",fontsize=20)
plt.imshow(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
#Affichage de img2
img2plot = 4
ax2 = fig.add_subplot(X, Y, img2plot)
#Réglage du titre
ax2.set_title("img2",fontsize=20)
plt.imshow(cv2.cvtColor(img2, cv2.COLOR_BGR2RGB))
plt.show() #Il a été affiché sans lui.
Avec cela, il semble facile d'écrire un article de comparaison des résultats d'opérations futures!
Recommended Posts