chars = [] result = self.charsSegment.charsSegment(plate, chars) if cfg.DEBUG: import matplotlib.pyplot as plt for i, char in enumerate(chars): plt.subplot(1, len(chars), i+1) plt.imshow(char, cmap='gray') plt.show()请将这段代码中的plt函数转化成cv2函数,使得这段代码也可以显示图片
时间: 2023-04-02 20:02:55 浏览: 82
emnist融合chars74k数据集_emnist-chars74k_datasets.zip
可以使用cv2.imshow()函数来替换plt.imshow()函数,代码如下:
chars = []
result = self.charsSegment.charsSegment(plate, chars)
if cfg.DEBUG:
import cv2
for i, char in enumerate(chars):
cv2.imshow('char{}'.format(i), char)
cv2.waitKey()
cv2.destroyAllWindows()
阅读全文