?? imagesize.m
字號:
function [m,n]=imageSize(A)%% Tells the total image size of the psfMatrix object%%% K. Lee 1/28/02A=A.psf;A=A.image;[rows,cols]=size(A);m=0;n=0;for i = 1:cols A1=A{i}; [r,A1cols]=size(A1); n=n+A1cols;endfor i = 1:rows A1=A{i}; [r,A1cols]=size(A1); m = m+r;end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -