📜  matlab转置图像 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:57.394000             🧑  作者: Mango

代码示例1
% MATLAB
% swap rows and cols but keep the 3rd dimension intact.
permute(yourImg,[2 1 3]);