搜索资源列表
Bilinear-interpolation-algorithm
- 图像的双线性插值放大算法中,目标图像中新创造的象素值,是由源图像位 置在它附近的2*2 区域4 个邻近象素的值通过加权平均计算得出的。 双线性内插 值算法放大后的图像质量较高,不会出现像素值不连续的的情况。然而次算法具 有低通滤波器的性质,使高频分量受损,所以可能会使图像轮廓在一定程度上变 得模糊。 -Bilinear interpolation algorithm to enlarge the image, the target image in the newly creat
t_gbl
- simulink中调用网格数据双线性内插的解算函数,可根据不同数据库进行修改-mesh data in simulink calls solving bilinear interpolation functions, which can be modified according to different databases
resample
- 此程序包括重采样中的最邻近法,双线性内插法,三次卷积法。-resampling
matlab1
- 练习读入lena.bmp图像,在workspace中查看图像,显示图像,并将此图像存储在C盘根目录下,命名为1.bmp。 读入两幅尺寸相同的图像(lena.bmp和sky.bmp),做加法,实现双曝光的效果。 读入两幅尺寸相同的图像(2.bmp和2background.bmp),做减法,实现减背景效果。 读入lena.bmp图像,编写一个模板,此模板是以图像中心为圆心,64像素为半径的圆内为1,其他位置为0,以此模板乘以读入的lena图像,显示结果。 用图像除法完成减背景操作(
bline-interp
- 编写了一个用于二维水深插值的双线性插值的fortran程序,用于水深的插值计算,内有验证的算例-Write a fortran program for two-dimensional depth interpolation bilinear interpolation, interpolation calculation for water depth, within a verification example
Bilinear-interpolation
- MATLAB编写代码实现图像放大和缩小的双线性内插法-MATLAB code to realize the image zoom in and out of the bilinear interpolation
matlab 图像旋转
- 不使用MATLAB内置函数,自己编程实现图像的旋转3.编写程序实现图像旋转功能。将“lena.bmp”图像绕图像中心逆时针旋转20度,并显示结果。要求: (1)不要使用imrotate函数; (2)涉及到坐标映射时采用向后映射; (3)涉及到插值时采用邻近插值和双线性插值,对比结果;