1. 三维矩阵存储方式
https://www.cnblogs.com/DLarTisan/p/8891405.html
3. matlab和caffe中RGB图像存储顺序
MATLAB:RGB图像是存储在H*W*CH的三维矩阵中,H表示hight(即rows),W表示width(即cols),CH即channel。
caffe:BGR格式,且矩阵维度为W*H*CH。
因此matlab读取的图像要经过以下处理再送入caffe网络。
Img = permute(Img, [2,1,3]);%flip width and height
Img = Img(:,:,[3,2,1]);%permute channels from RGB to BGR