a = imread('temp.png'); % 读取temp.png图片,a是二维数组(灰度图)或三维数组(彩图)a = reshape(a, 1, prod(size(a))) % prod是累乘