У меня проблемы с отображением изображений OpenCV в подспоте matplotlib
#Read random images from multiple directories
import random
animals = os.listdir('signs/train')
sample_images = []
for a in animals:
dirname = 'signs/train/' + a
files = random.sample(os.listdir(dirname), 5)
files = [dirname + '/' + im for im in files]
sample_images.extend(files)
del files, dirname, animals
print(sample_images)
# Output: ['signs/train/rooster/00000327.jpg', 'signs/train/rooster/00000329.jpg', 'signs/train/rooster/00000168.jpg', ..., 'signs/train/rooster/00000235.jpg', 'signs/train/rooster/00000138.jpg']
#Read using OpenCV and show in matplotlib's subplots
fig, ax = plt.subplots(12, 5,figsize=(15,15), sharex=True)
for idx, si in enumerate(sample_images):
i = idx % 5 # Get subplot row
j = idx // 5 # Get subplot column
image = cv2.imread(si)
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
image = cv2.resize(image, (64, 64))
ax[i, j].plot(image)
plt.show()
Я проверил, что каждое изображение успешно загружено и изменено в размерах с использованием opencv, но я не знаю, почему я получаю следующую ошибку когда я наносил их на matplotlib
* subplot
.
ValueError Traceback (most recent call last)
<ipython-input-56-38cc921c1724> in <module>()
10 #image = Image.open(si)
11 #print(type(image))
---> 12 ax[i, j].plot(image)
13 plt.show()
3 frames
/usr/local/lib/python3.6/dist-packages/matplotlib/axes/_base.py in _xy_from_xy(self, x, y)
271 if x.ndim > 2 or y.ndim > 2:
272 raise ValueError("x and y can be no greater than 2-D, but have "
--> 273 "shapes {} and {}".format(x.shape, y.shape))
274
275 if x.ndim == 1:
ValueError: x and y can be no greater than 2-D, but have shapes (64,) and (64, 64, 3)
РЕДАКТИРОВАТЬ Я забыл упомянуть, что я пытался тестировать на одном изображении, и это работает ( даже если это формат JPG и все еще используются каналы RGB)
![enter image description here](https://i.stack.imgur.com/oSZcJ.png)
Что я делаю не так?