cifar10图片可视化显示matplotlib

 

下载cifar10数据集后,想显示几张图片,把数据转换为图片显示;

cifar10下载网址链接

1、数据读入

上面下载数据集的页面给出了数据格式和数据读入方式;下载数据集后直接用给出方法读入数据:

def unpickle(file):
	import cPickle
	with open(file,'rb')as fo:
		dict=cPickle.load(fo)
	return dict
cifar10_data=unpickle("./cifar-10-batches-py/data_batch_1")

2、读入后返回一个字典dict,内部元素包含:

key和值结果如下:


4
key: data 
type 
key: labels 
type 
key: batch_label 
type 
key: filenames 
type 

对应各对象的shape如下:

​
('cifar10_data_type:', (10000, 3072))
('cifar10_labels:', 10000)
('cifar10_batch_label', 'training batch 1 of 5')
('cifar10_filenames', 10000)

​

3、使用matplotlib显示图片:

这里随机抽取一张图片进行显示,以第十三张图为例

image=cifar10_data['data']
image0=image[13]
pic=image0.reshape(3,32,32)
pic=pic.transpose(1,2,0)

fig=plt.figure()
plt.imshow(pic)
plt.show()
plt.close()

4、显示结果:

图片只能大概看清楚是什么,不知道是图片信息太少只能达到这样的效果还是方法有问题?

cifar10图片可视化显示matplotlib_第1张图片


有问题欢迎留言指正:邮箱[email protected]

你可能感兴趣的:(tensorflow)