简体   繁体   中英

Plot augmented images using matplotlib in python3.6

I am trying to plot a bunch of augmented images from the training directory. I am using Keras and Tensorflow. The visual library is matplotlib. I am using the code below to plot 256 X 256 X 1 gray images in 6 rows and columns. The error I am getting is

Invalid Dimensions for image data.

Here is the code I am using:-

%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np

import keras
from keras.preprocessing.image import ImageDataGenerator

train_set = '/home/ai/IPI/Data/v1_single_model/Train/' # Use your own path
batch_size = 4

gen = ImageDataGenerator(rescale = 1. / 255)
train_batches = gen.flow_from_directory(
        'data/train',
        target_size=(256, 256),
        batch_size=batch_size,
        class_mode='binary')

def plot_images(img_gen, img_title):
    fig, ax = plt.subplots(6,6, figsize=(10,10))
    plt.suptitle(img_title, size=32)
    plt.setp(ax, xticks=[], yticks=[])
    plt.tight_layout(rect=[0, 0.03, 1, 0.95])
    for (img, label) in img_gen:
        for i in range(6):
            for j in range(6):
                if i*6 + j < 256:
                    ax[i][j].imshow(img[i*6 + j])
        break

plot_images(train_batches, "Augmented Images")

Below is the snapshot of error and python traceback:-

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-79-81bdb7f0d12e> in <module>()
----> 1 plot_images(train_batches, "Augmented Images")

<ipython-input-78-d1d4bba983d3> in plot_images(img_gen, img_title)
      8             for j in range(6):
      9                 if i*6 + j < 32:
---> 10                     ax[i][j].imshow(img[i*6 + j])
     11         break

~/anaconda3/lib/python3.6/site-packages/matplotlib/__init__.py in inner(ax, *args, **kwargs)
   1896                     warnings.warn(msg % (label_namer, func.__name__),
   1897                                   RuntimeWarning, stacklevel=2)
-> 1898             return func(ax, *args, **kwargs)
   1899         pre_doc = inner.__doc__
   1900         if pre_doc is None:

~/anaconda3/lib/python3.6/site-packages/matplotlib/axes/_axes.py in imshow(self, X, cmap, norm, aspect, interpolation, alpha, vmin, vmax, origin, extent, shape, filternorm, filterrad, imlim, resample, url, **kwargs)
   5122                               resample=resample, **kwargs)
   5123 
-> 5124         im.set_data(X)
   5125         im.set_alpha(alpha)
   5126         if im.get_clip_path() is None:

~/anaconda3/lib/python3.6/site-packages/matplotlib/image.py in set_data(self, A)
    598         if (self._A.ndim not in (2, 3) or
    599                 (self._A.ndim == 3 and self._A.shape[-1] not in (3, 4))):
--> 600             raise TypeError("Invalid dimensions for image data")
    601 
    602         self._imcache = None

TypeError: Invalid dimensions for image data

在此处输入图片说明

What am I doing wrong ?

The error is telling you what is wrong. Your image is of shape (1,n,m,1) , in the first loop run you select img[0] , which results in the array to have shape (n,m,1) hence

self._A.ndim == 3 and self._A.shape[-1] not in (3, 4)

From the matplotlib.pyplot.imshow(X, ...) documentation

X : array_like, shape (n, m) or (n, m, 3) or (n, m, 4)

but not (n,m,1) . Apart from that img[i*6 + j] would fail as soon as i*6 + j > 0 .

The image img dimensions are (samples, height, width, channels) . img is a single sample, hence samples = 1 ; it is grayscale, hence channels = 1 . To get an image of shape (n,m) out, you need to select it like

imshow(img[0,:,:,0]) 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM