1. 程式人生 > >cifar-10 圖片可視化

cifar-10 圖片可視化

adl odi 對象 shape ret plt rgb ray cnblogs

保存cifar-10 數據集 圖片 python3

#用於將cifar10的數據可視化
import pickle as p
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.image as plimg
from PIL import Image
def load_CIFAR_batch(filename):
    with open(filename, rb)as f:
#       datadict = p.load(f)
        datadict = p.load(f,encoding=
latin1) X = datadict[data] Y = datadict[labels] X = X.reshape(10000, 3, 32, 32) Y = np.array(Y) return X, Y def load_CIFAR_Labels(filename): with open(filename, rb) as f: lines = [x for x in f.readlines()] print(lines) if __name__ == "
__main__": load_CIFAR_Labels("./cifar-10-batches-py/batches.meta") imgX, imgY = load_CIFAR_batch("./cifar-10-batches-py/data_batch_1") print(imgX.shape) print("正在保存圖片:") # for i in range(imgX.shape[0]): for i in range(10):#值輸出10張圖片,用來做演示 # imgs = imgX[i - 1]#? imgs = imgX[i] img0
= imgs[0] img1 = imgs[1] img2 = imgs[2] i0 = Image.fromarray(img0)#從數據,生成image對象 i1 = Image.fromarray(img1) i2 = Image.fromarray(img2) img = Image.merge("RGB",(i0,i1,i2)) name = "img" + str(i)+".png" img.save("./cifar10_images/"+name,"png")#文件夾下是RGB融合後的圖像 for j in range(imgs.shape[0]): # img = imgs[j - 1] img = imgs[j] name = "img" + str(i) + str(j) + ".png" print("正在保存圖片" + name) plimg.imsave("./cifar10_images/" + name, img)#文件夾下是RGB分離的圖像 print("保存完畢.")

cifar-10下載鏈接:http://www.cs.toronto.edu/~kriz/cifar.html

cifar-10 圖片可視化