⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 validatetheta_homography.m

📁 RANSAC Toolbox by Marco Zuliani email: marco.zuliani@gmail.com -------------------------------
💻 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 + -