CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 线性插值 双线性插值

搜索资源列表

  1. xuanzhuan

    0下载:
  2. 8bit图像旋转的代码,用了后向双线性插值的方法-8bit image rotation code, using the latter to the bilinear interpolation method
  3. 所属分类:Special Effects

    • 发布日期:2017-05-12
    • 文件大小:2668152
    • 提供者:陈冲
  1. GeoTrans

    0下载:
  2. MFC实现的图像的缩放,旋转。包括双线性插值算法的实现。-MFC to achieve the image scaling, rotation. Including the bilinear interpolation algorithm.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:2068468
    • 提供者:ruby
  1. Bilinear

    0下载:
  2. 用VC++语言,实现了双线性插值算法,处理图像为bmp-Bilinear interpolation algorithm
  3. 所属分类:CSharp

    • 发布日期:2017-04-10
    • 文件大小:1913977
    • 提供者:duckling
  1. Bayer

    0下载:
  2. 图像的双线性插值算法,VC++编写,作为基础知识掌握。-Bilinear image interpolation algorithm, VC++ written, as basic knowledge.
  3. 所属分类:Special Effects

    • 发布日期:2017-03-27
    • 文件大小:1348
    • 提供者:哈馊豆
  1. Bilinearinterpolation

    0下载:
  2. 双线性插值法,用于图像的放大,将图像放大-Bilinear interpolation for image magnification, the image to enlarge
  3. 所属分类:matlab

    • 发布日期:2017-04-04
    • 文件大小:588
    • 提供者:王一
  1. juz

    0下载:
  2. 邻域插值缩放 双线性插值缩放 最近邻域插值缩放-Neighborhood interpolation zoom bilinear interpolation scaling the nearest domain interpolation scaling
  3. 所属分类:Special Effects

    • 发布日期:2017-04-24
    • 文件大小:322550
    • 提供者:洋溢
  1. tuxiangxuanzhuan

    0下载:
  2. 用于自定义旋转角度,用vc++2005结合opencv实现。旋转后,采用双线性插值-Used to customize the rotation, combined with vc++2005 opencv implementation. After the rotation, using bilinear interpolation
  3. 所属分类:OpenCV

    • 发布日期:2017-03-24
    • 文件大小:1035
    • 提供者:夏晨曦
  1. im_R

    0下载:
  2. 通过双线性插值算法实现图像旋转,图像可以是灰度图也可以是RBG图像-Image rotation
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:596
    • 提供者:贺洪元
  1. imagezoom

    0下载:
  2. 用双线性插值对图像进行缩放,放大缩小均可,速度比较快-Bilinear interpolation used to zoom the image
  3. 所属分类:Special Effects

    • 发布日期:2017-04-03
    • 文件大小:1093
    • 提供者:zz
  1. QRcode

    3下载:
  2. QR码作为一种可高速、全方位识别的二维条码,已经在各行各业中得到了应用,并具有很大发展潜力.本文针对QR码图像的识别过程中可能遇到的图像噪声干扰、QR码占实际拍摄图像的一部分、倾斜、几何失真等问题进行了研究,提出了通过改进型中值滤波去除噪声,使用QR码符号特性定位并对倾斜图像进行旋转,对失真不严重的图像采用控制点变换和双线性插值方法进行几何校正.实验证明, 本文的方法简单有效, 可以用于提高条码的正确识别率.-As a high-speed, full identification of th
  3. 所属分类:matlab

    • 发布日期:2017-04-10
    • 文件大小:1319696
    • 提供者:ljj
  1. Bilinear-interpolation-algorithm

    0下载:
  2. 图像的双线性插值放大算法中,目标图像中新创造的象素值,是由源图像位 置在它附近的2*2 区域4 个邻近象素的值通过加权平均计算得出的。 双线性内插 值算法放大后的图像质量较高,不会出现像素值不连续的的情况。然而次算法具 有低通滤波器的性质,使高频分量受损,所以可能会使图像轮廓在一定程度上变 得模糊。 -Bilinear interpolation algorithm to enlarge the image, the target image in the newly creat
  3. 所属分类:matlab

    • 发布日期:2017-03-24
    • 文件大小:332557
    • 提供者:chenjun
  1. bandelet_wang

    0下载:
  2. 用matlab实现图像双线性插值,适合于图像处理初学者,方便以后得图像的进一步处理-Image by matlab bilinear interpolation, image processing suitable for beginners, convenient for further processing after the image was
  3. 所属分类:Special Effects

    • 发布日期:2017-04-02
    • 文件大小:825760
    • 提供者:wangfuqiang
  1. GeoTrans

    0下载:
  2. 图像平移,平移(逐行);缩放;图像旋转,旋转(双线性插值)-Image translation transformation;zoom;rotate
  3. 所属分类:Special Effects

    • 发布日期:2017-04-17
    • 文件大小:122158
    • 提供者:成汁
  1. SubPx

    0下载:
  2. 图像处理中常遇到“亚像素”这个词。亚像素实际上不存在,但是在想象中存在。于是用数学的方法计算出它的值。示例中将一幅图的高和宽都扩大到5倍,造成原来相邻两像素不相邻了,中间间隔了好几个像素单位,这些像素怎样定义它们,简单的,数学上用双线性插值的方法求出未知的像素。本程序提供一个代码示例,供参考,希望对您有帮助。-Frequently encountered in image processing "sub-pixel" is the word. Sub-pixel does not actuall
  3. 所属分类:Special Effects

    • 发布日期:2017-03-31
    • 文件大小:396352
    • 提供者:xuxiangxing
  1. 4

    0下载:
  2. 插值的函数 函数名 功能 Language 求已知数据点的拉格朗日插值多项式 Atken 求已知数据点的艾特肯插值多项式 Newton 求已知数据点的均差形式的牛顿插值多项式 Newtonforward 求已知数据点的前向牛顿差分插值多项式 Newtonback 求已知数据点的后向牛顿差分插值多项式 Gauss 求已知数据点的高斯插值多项式 Hermite 求已知数据点的埃尔米特插值多项式 SubHermite 求已知数据点的分段三次埃尔米特插值多项式及其
  3. 所属分类:matlab

    • 发布日期:2016-01-26
    • 文件大小:10240
    • 提供者:gleeman
  1. bi_linear_quadratic_interpolation

    0下载:
  2. 双线性插值是指利用映射点在输入图像的4 个邻点的灰度值对映射点进行插值,即待插点处的数值用离待插点最近的四个点的值加权求得。在同一行内根据待插值像素点与其前后的原图像像素点的位置距离进行加权线性插值,即离原图像像素点越近的待插值像素点,原图像像素的加权系数就越大 行间根据待插值行与其上下的原图像行间的距离进行加权线性插值,即离原图像行越近的待插值行,原图像行的加权系数就越大-Bilinear mapping point is the use of four adjacent points in
  3. 所属分类:Special Effects

    • 发布日期:2017-04-27
    • 文件大小:52943
    • 提供者:毛巴马
  1. 新建文件夹

    0下载:
  2. 可以使文件中的图像放大两倍,采用双线性插值不失真。(The image magnified two times)
  3. 所属分类:其他

  1. double_fit

    0下载:
  2. 输入包含x,y,z信息的dat/txt/lvm数据库,通过双线性插值函数实现二维插值。(Two dimensional interpolation)
  3. 所属分类:LabView编程

    • 发布日期:2018-01-10
    • 文件大小:18432
    • 提供者:rocfly
  1. chazhi

    0下载:
  2. 双线性插值,又称为双线性内插。在数学上,双线性插值是有两个变量的插值函数的线性插值扩展,其核心思想是在两个方向分别进行一次线性插值。双线性插值作为数值分析中的一种插值算法,广泛应用在信号处理,数字图像和视频处理等方面。(Bilinear interpolation is also called bilinear interpolation. In mathematics, bilinear interpolation is a linear interpolation expansion of
  3. 所属分类:其他

    • 发布日期:2018-04-29
    • 文件大小:878592
    • 提供者:sixiudant
  1. 2D-interpolation

    0下载:
  2. G++和opencv实现图像的双线性插值(G++ code for Bilinear interpolation of images with opencv)
  3. 所属分类:图形图像处理

    • 发布日期:2018-04-30
    • 文件大小:1024
    • 提供者:小王 123
« 1 2 34 5 6 7 8 9 10 ... 19 »
搜珍网 www.dssz.com