IndexError:数组IAMDataset的索引过多

时间:2019-05-28 07:23:21

标签: python-3.x numpy mxnet

我正在研究基于mxnet gluon(https://medium.com/apache-mxnet/page-segmentation-with-gluon-dcb4e5955e2)的手写识别模型 我正在尝试适合我自己的图像数据集,而不是IAMDataset的图像数据集。当前在IndexError上遇到错误。

当前,我在“ form”文件夹中有4张图像。

src/js/index.js

images = np.array([cv2.imread(file) for file in glob.glob("E:/Jupyter Projects/handwritten-text-recognition-for-apache-mxnet-master/dataset/iamdataset/form/*.png")])

IndexError Traceback(最近一次通话最近)  在       2 for i,枚举图像(images):       3 y,x = int(i / 2),int(i%2) ----> 4 axs [y,x] .imshow(image,cmap ='Greys_r')       5 axs [y,x] .axis('off')

IndexError:数组的索引过多

0 个答案:

没有答案