unpack(fmt, string) 按照给定的格式(fmt)解析字节流string,返回解析出来的tuple
> big-endian standard 按原字节数
见上图:...个字节为magic number,4-8个字节为图片数量,magic和n均为无符号整形
magic, n = struct.unpack('>II',lbpath.read(8)) #> big-endian...为图片的宽,magic,num,rows,cols均为无符号整形
magic, num, rows, cols = struct.unpack('>IIII',imgpath.read(16))#> big-endian