搜索资源列表
contactertdde
- 含有线性插值, 样条插值,Gau ·清华大学2002年出版的《科学 ·等值线图广泛应用于石油勘探 ·此文件包括蒙特卡罗方法的基 ·书是针对工程上常用的行之有 ·一个目标跟踪系统的MATLAB ·基于最小二乘原理的曲线拟合 ·三次样条曲线拟合 这个也是 ·快速傅立叶变换的源代码,是 ·数字水印技术处理
ADAMSftfdd
- 含有线性插值, 样条插值,Gau ·清华大学2002年出版的《科学 ·等值线图广泛应用于石油勘探 ·此文件包括蒙特卡罗方法的基 ·书是针对工程上常用的行之有 ·一个目标跟踪系统的MATLAB ·基于最小二乘原理的曲线拟合 ·三次样条曲线拟合 这个也是 ·快速傅立叶变换的源代码,是 ·数字水印技术处理
ywwded3e
- 含有线性插值, 样条插值,Gau ·清华大学2002年出版的《科学 ·等值线图广泛应用于石油勘探 ·此文件包括蒙特卡罗方法的基 ·书是针对工程上常用的行之有 ·一个目标跟踪系统的MATLAB ·基于最小二乘原理的曲线拟合 ·三次样条曲线拟合 这个也是 ·快速傅立叶变换的源代码,是 ·数字水印技术处理
Image-Intepolation
- 利用双线性插值算法,实现图像的放大缩小,内附原理文档。-Bilinear interpolation algorithm to achieve image zoom, containing principles document.
14
- 使用线性插值原理,使用opencv实现了图片的线性插值-Using linear interpolation theory, to achieve the image using opencv linear interpolation
shuangxianxingchazhisuofangtuxiang
- 本实验采用双线形插值技术进行图像的缩放。该方法输出的像素值是它在输入图像中2*2邻域采样点的平均值,它根据某像素周围4个像素的灰度值在水平和垂直方向两个方向上对其插值。在进行图像缩放时,其考虑到了相邻近的像素点间的关系。这种平均算法具有放锯齿效果,创造出来的图像拥有平滑的边缘,锯齿难以察觉,所以相对于最近邻法,其的效果比较好。在进行程序设计时,程序的输入参数为图像矩阵和结果图像的水平和垂直方向的像素数,可以忽略混叠效应。在程序运行之后可以对其前的实验结果进行比较分析异同,进而更深刻的理解最近邻插
fit
- 用差分方程或数值微分解决简单的实际问题。 实验3 插值与数值积分 l 插值问题提法和求解思路 l Lagrange插值的原理和优缺点 l 分段线性和三次样条插值的原理和优缺点 l 用MATLAB实现分段线性和三次样条插值 l 梯形、辛普森积分公式的原理及MATLAB实现 l 数值积分公式的误差——收敛阶的概念 l 高斯积分公式 l 广义积分与多重积分 l 用插值和数值积分解决
imageScalingAlgorithm
- 基于双线性插值的图像缩放算法论文,原理及其源代码-Based on the bilinear interpolation of the image scaling algorithm paper, principle and its source code
ImageEnlarge
- 采用国际标准测试图lena进行测试。分别采用“基于像素放大原理的图像放大”、“基于双线性插值原理的图像放大”两种方法进行图像分割。并附有注释、程序清晰、易于阅读。相信图像初学者阅读后必定会有很大的-image enlarge, pixel enlarge based method, bi-linear insert method
cs188
- 对相机阵列拍得的图像的空间插值合成,采用双线性插值算法,光场渲染原理。-Array of camera images taken of the spatial interpolation of the synthesis, the use of bilinear interpolation algorithm, the principle of light field rendering.
deltainsert
- 利用偏移量插值实现图像的透视变换(运用了双线性变换原理)-Offset interpolation using the image perspective transformation (using the bilinear transformation principle)
Interp
- MATLAB程序演示线性插值和三次样条插值原理-Interpretation based on linearity and cubic spline on matlab codes
invradonlinear
- 采用线性插值的反radon变换,按照原理直接编的,要求tau-p域中的p都是从正数开始的-Code in accordance with the principle of direct linear interpolation of the anti-radon transform, the tau-p domain p from positive
Bilinear-Interpolation
- 双线性插值matlab程序,内容是灰度级插值之双线性原理与实现,包括原理简介和代码源程序-Bilinear Interpolation based on matlab
matlab插值与数据拟合
- 使用matlab的插值与数据拟合,含有插值原理,方程,插值方法有:拉格朗日多项式插值,分段线性插值,三次样条插值,最小二乘法,有多个实例(有源码、语句、结果、图像等)
shrink_zoom_bilinear
- 这个程序是为了实现图片(包括彩色图和灰度图)的放缩功能,能满足任意指定放缩倍数或任意目标尺寸,原理是依据双线性插值。-The code can shrink and zoom arbitray image to appointed multiple or size regardless of intensty image and color image, the key function relay on bilinear interpolation.
C
- 运用matlab对图像进行放大:像素复制法和双线性插值法。像素复制方法的图像缩放的原理主要是对原来输入图像的整行或是整列像素进行简单的复制与删除,达到改变图像大小的目的。双线性插值放大算法中,目标图像中新创造的象素值,是由原图像位置在它附近的小区域象素的值通过加权平均计算得出的。-Write MATLAB function to zoom a grayscale image from original size to the given output size through two dif
matlab-_scaler
- 分别用最邻近插值算法和双线性插值算法在matlab上实现图像的缩放.word文档。附有算法原理以及实现效果。-Image scaling using the nearest neighbor interpolation algorithm and bilinear interpolation algorithms were implemented on matlab
Two-dimensional-linear-interpolation
- 二维数表的查取实例,主要利用二维线性插值原理-Charles takes the number of two-dimensional table of instances, the main principles of two-dimensional linear interpolation
bilinear-interpolation
- 采用双线性插值方法对图像进行缩小放大,从双线性插值原理上编程,matlab可运行。-using bilinear interpolation algorithm for image scaling, matlab can compile