Python2:调整使用 Matplotlib 绘制的图像大小

Python2: Resize image plotted using Matplotlib

我正在使用 Jupyter Notebook 和 Python 2 + OpenCV 3 进行编码,我需要使用图像显示我的结果。图像很小,很难观察结果。

from matplotlib import pyplot as plt
import cv2

thresh = 127
maxValue = 255
file_path = "dados/page1.jpg"
%matplotlib notebook

image = cv2.imread(file_path)
gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
plt.title("First image")
plt.imshow(gray_image)

输出图片

图片太小。如何缩放它?

像往常一样,您可以使用

设置图形大小
plt.figure(figsize=(8,12))

最大图形大小为(50,50),但是您需要根据您的屏幕大小自行选择合理的值。