【结构光三维重建】左超标定论文之Linear phase-height model和Polynomial phase-height model的区别

这篇博客对比了线性相位高度模型、多项式相位高度模型和逆线性相位高度模型在标定过程中的差异。主要区别在于多项式模型中的n_ord参数,线性模型中为1,多项式模型中为3,这影响了拟合的复杂性和精度。此外,提到了基于控制方程的模型和三角立体模型,但指出三角法可能是最有价值的方法。
摘要由CSDN通过智能技术生成

乍一看代码Linear phase-height model和Polynomial phase-height model的step1几乎一样,但是略有不同
两者都是说的相位-高度模型下的,看论文可以更清晰地明了
Calibration of fringe projection profilometry: A comparative review

相同点:输入相同
不同点:在于n_ord

%Polynomial phase-height model
%% step 1: load the unwrapped phase of the moving plane at different heights
tic;
load_data = load('up_all.mat');
up_all = load_data.up_all;
ref_heights = load_data.ref_heights;

n_ord = 3; % polynomial fitting
img_width = 640; % image width
img_height = 480; % image height
%Linear phase-height model
%% step 1: load the unwrapped phase of the moving plane at different heights
tic;
load_data = load('up_all.mat');
up_all = load_data.up_all;
ref_heights = load_data.ref_heights;

n_ord = 1; % linear fitting
img_width = 640; % image width
img_height = 480; % image height
%Linear inverse phase-height model
%% step 1: load the unwrapped phase of the moving plane at different heights
tic;
load_data = load('up_all.mat');
up_all = load_data.up_all;
ref_heights = load_data.ref_heights;

img_width = 640; % image width
img_height = 480; % image height

而论文中的多项式相位-高度模型和基于多项式拟合的结构光系统标定完全不一样

论文提到以下五种模型,比较有价值的也就三角法了,学习中

线性相位高度模型
逆线性相位高度模型
多项式相位高度模型
基于控制方程的相位高度模型
三角立体模型
  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值