?? validatetheta_homography.m
字號:
function flag = validateTheta_homography(X, Theta, s)% flag = validateMSS_homography(X, Theta, s)%% DESC:% Validates the parameter vector%% INPUT:% X = samples on the manifold% Theta = parameter vector% s = indices of the MSS%% OUTPUT:% flag = true if the MSS is valid% AUTHOR:% Marco Zuliani, email: marco.zuliani@gmail.com% Copyright (C) 2008 by Marco Zuliani % % LICENSE:% This toolbox is distributed under the terms of the GNU LGPL.% Please refer to the files COPYING and COPYING.LESSER for more information.% condition number thresholdT_K = 1e12;% perform here the check on the parameter vector ThetaH = reshape(Theta, 3, 3);K = cond(H);if (K > T_K) flag = false;else flag = true;end;return
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -