?? invmoments.m
字號:
%compute invariant moments of image
function phi =invmoments(F)
if (ndims(F) ~= 2) | issparse(F) | ~isreal(F) | ~(isnumeric(F) | islogical(F));
error(['F must be a 2D,real,nonsparse,numeric or logical matrix.']);
end
F=double(F);
phi =compute_phi(compute_eta(compute_m(F)));
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -