
特别说明:完整45期数字信号处理教程,原创高性能示波器代码全开源地址:链接 第21章 InterpolationFunctions的使用 本期教程主要讲解一维数据的线性插值和二维数据的双线性插值。 21.1 线性插补 Linear Interpolation 21.2 双线性插补 Bilinear Interpolation 21.3 总结 21.1 线性插值 Linear Interpolation 21.1.1 arm_linear_interp_f32 公式描述: ![]() 直线插补曲线可以通过线性多项式进行拟合。线性内插的工作原理有效地绘制两个相邻样本之间的直线和沿该线再返回相应的插补点。 如上图所示,确定了输入参数x在样本数据中的位置后,就可以绘制这两个样本值之间的直线。然后返回X值对应的Y值。返回方法就是下面的直线公式: y = y0 + (x - x0) * ((y1 - y0)/(x1-x0)) 其中x0和x1是输入值x最近的两个数据,y0和y1是输出值y最近的两个值。 函数定义如下: static __INLINE float32_t arm_linear_interp_f32( arm_linear_interp_instance_f32 * S, float32_t x) 参数定义: [in,out] *S is an instance of the floating-point Linear Interpolation structure [in] x input sample to process return y processed output sample. 注意事项: 1. 结构arm_linear_interp_instance_f32的定义如下(在文件arm_math.h文件): typedef struct { uint32_t nValues; /**< nValues */ float32_t x1; /**< x1 */ float32_t xSpacing; /**< xSpacing */ float32_t *pYData; /**< pointer to the table of Y values */ } arm_linear_interp_instance_f32; 2. 如果输入参数x在输入范围之下返回第一个样本值,如果相爱输入范围之上,返回最后一个样本值。 21.1.2 arm_linear_interp_q31 函数定义如下: static __INLINE q31_t arm_linear_interp_q31( q31_t * pYData, q31_t x, uint32_t nValues) 参数定义: [in] *pYData pointer to Q31 Linear Interpolation table [in] x input sample to process [in] nValues number of table values return y processed output sample. 注意事项: 1. 结构arm_linear_interp_instance_q31的定义如下(在文件arm_math.h文件): typedef struct { uint16_t numRows; /**< number of rows in the data table. */ uint16_t numCols; /**< number of columns in the data table. */ q31_t *pData; /**< points to the data table. */ } arm_bilinear_interp_instance_q31; 2. 如果输入参数x在输入范围之下返回第一个样本值,如果相爱输入范围之上,返回最后一个样本值。 3. 输入参数x的数据格式是12.20。这样32位数据的12位整数部分用于样本数据的检测,所以最大值就是2的12次方。后20位用于小数部分。 21.1.3 arm_linear_interp_q15 函数定义如下: static __INLINE q15_t arm_linear_interp_q15( q15_t * pYData, q31_t x, uint32_t nValues) 参数定义: [in] *pYData pointer to Q15 Linear Interpolation table [in] x input sample to process [in] nValues number of table values return y processed output sample. 注意事项: 1. 结构arm_linear_interp_instance_q15的定义如下(在文件arm_math.h文件): typedef struct { uint16_t numRows; /**< number of rows in the data table. */ uint16_t numCols; /**< number of columns in the data table. */ q15_t *pData; /**< points to the data table. */ } arm_bilinear_interp_instance_q15; 2. 如果输入参数x在输入范围之下返回第一个样本值,如果相爱输入范围之上,返回最后一个样本值。 3. 输入参数x的数据格式是12.20。这样32位数据的12位整数部分用于样本数据的检测,所以最大值就是2的12次方。后20位用于小数部分。 21.1.4 arm_linear_interp_q7 函数定义如下: static __INLINE q7_t arm_linear_interp_q7( q7_t * pYData, q31_t x, uint32_t nValues) 参数定义: [in] *pYData pointer to Q7 Linear Interpolation table [in] x input sample to process [in] nValues number of table values return y processed output sample. 注意事项: 1. 结构arm_linear_interp_instance_q7的定义如下(在文件arm_math.h文件): typedef struct { uint16_t numRows; /**< number of rows in the data table. */ uint16_t numCols; /**< number of columns in the data table. */ q7_t *pData; /**< points to the data table. */ } arm_bilinear_interp_instance_q7; 2. 如果输入参数x在输入范围之下返回第一个样本值,如果相爱输入范围之上,返回最后一个样本值。 3. 输入参数x的数据格式是12.20。这样32位数据的12位整数部分用于样本数据的检测,所以最大值就是2的12次方。后20位用于小数部分。 21.1.5 实例讲解 实验目的: 1. 学习InterpolationFunctions中线性插补的实现 实验内容: 1. 按下按键K1, 串口打印函数DSP_MatLinearInterpolation的输出结果 实验现象: 通过窗口上位机软件SecureCRT(V5光盘里面有此软件)查看打印信息现象如下: ![]() 程序设计:
1. 使用这个程序前需要通过Matlab获取如下的插值样本: x = -pi: 0.00005 : (2*pi - 0.00005); y = sin(x); 这个插值样本已经放在在了如下文件中 ![]() 2. 这个函数通过信噪比来对比了前面讲的三次插补和线性插补。最终结果是线性插补的结果要优于三次插补。 3. 关于信噪比的计算,我们会在下章做详细的讲解。 |
21.2.1 arm_bilinear_interp_f32
21.2.2 arm_bilinear_interp_q31
21.2.3 arm_bilinear_interp_q15
21.2.4 arm_linear_interp_q7