加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dataHandler.m 661 Bytes
一键复制 编辑 原始数据 按行查看 历史
jacky 提交于 2020-07-10 07:54 . a
function error = dataHandler(ctlData,cmpData, sampleSize)
%DATAHANDLER Read the cells and calculate the error
% Use the data cells and calculate the error between two data cells
[ctlRowNum, ctlColNum] = size(ctlData);
[cmpRowNum, cmpColNum] = size(cmpData);
assert(ctlColNum == cmpColNum,'Incompatible cell size');
assert(sampleSize <= min(ctlRowNum, cmpRowNum))
ctlMatrix = cell2mat(ctlData);
cmpMarix = cell2mat(cmpData);
error = zeros(sampleSize, 2);
for i = 1:sampleSize
%转化成四元数矩阵
ctlCurRow = quat2mat(ctlMatrix(i,5:8));
cmpCurRow = quat2mat(cmpMarix(i,5:8));
error(i,:) = calcPoseError(cmpCurRow,ctlCurRow);
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化