Welcome![Sign In][Sign Up]
Location:
Search - bilinear interpolation pixel

Search list

[GDI-Bitmaptexthalo

Description: 你可能会认为生成一个带柔和阴影的特效文字与生成一个带光圈的特效文字是完全不同的,其实他们所用到的技术是完全相同的,只是在设置上有些许变化。 在带柔和阴影的效果中,我用到了GDI+中的一些插值模式来生成模糊的文字轮廓,当位图绘制平面放大时,插值模式决定原来某点像素应该怎样和周围的融合。 低质量的插值只是简单的把一个像素变换成同色色块,高质量插值如高质量双线性插值与高质量双三次插值会考虑像素色的平滑与反走样,我发现高质量双线 性插值模式最好。-you may think that a generation with a soft shadow effects of the letter and generate an aperture with the magic words are completely different, they actually have to use the technology is identical, the only set slightly changes. With soft shadows in effect, I used the GDI some of the interpolation model to generate fuzzy outline of the text, when the Bitmap Rendering Large Plane, interpolation mode decision of a point of what should pixels and around integration. Low-quality interpolation just simply put a pixel transform into the same color against a high-quality interpolation such as high-quality and high-quality bilinear interpolation bicubic interpolation will consider pixel color with a smooth anti-aliasing, I found quality bilinear interpolation mode best.
Platform: | Size: 955789 | Author: 陈兴锐 | Hits:

[GDI-Bitmaptexthalo

Description: 你可能会认为生成一个带柔和阴影的特效文字与生成一个带光圈的特效文字是完全不同的,其实他们所用到的技术是完全相同的,只是在设置上有些许变化。 在带柔和阴影的效果中,我用到了GDI+中的一些插值模式来生成模糊的文字轮廓,当位图绘制平面放大时,插值模式决定原来某点像素应该怎样和周围的融合。 低质量的插值只是简单的把一个像素变换成同色色块,高质量插值如高质量双线性插值与高质量双三次插值会考虑像素色的平滑与反走样,我发现高质量双线 性插值模式最好。-you may think that a generation with a soft shadow effects of the letter and generate an aperture with the magic words are completely different, they actually have to use the technology is identical, the only set slightly changes. With soft shadows in effect, I used the GDI some of the interpolation model to generate fuzzy outline of the text, when the Bitmap Rendering Large Plane, interpolation mode decision of a point of what should pixels and around integration. Low-quality interpolation just simply put a pixel transform into the same color against a high-quality interpolation such as high-quality and high-quality bilinear interpolation bicubic interpolation will consider pixel color with a smooth anti-aliasing, I found quality bilinear interpolation mode best.
Platform: | Size: 955392 | Author: 陈兴锐 | Hits:

[Special Effectsbilinear

Description: 双线性插值方法,输出像素的值为其坐标2x2领域内像素值的加权平均。-Bilinear interpolation method, the output pixel values for the coordinates of the area of 2x2 pixels of the weighted average value.
Platform: | Size: 2048 | Author: chenqunqin | Hits:

[Special Effectsyaxiangsuweiyiguji

Description: 实现亚像素的运动位移估计算法实现,通过双线性内插实现!-Campaign to achieve sub-pixel displacement estimation algorithm to achieve, through bilinear interpolation to achieve!
Platform: | Size: 292864 | Author: 古松 | Hits:

[Special EffectsImageEnlarge

Description: 采用国际标准测试图lena进行测试。分别采用“基于像素放大原理的图像放大”、“基于双线性插值原理的图像放大”两种方法进行图像分割。并附有注释、程序清晰、易于阅读。相信图像初学者阅读后必定会有很大的-image enlarge, pixel enlarge based method, bi-linear insert method
Platform: | Size: 51200 | Author: 张捷 | Hits:

[Special EffectsImageMosaicCode

Description: 老外编的的程序,可以成功运行,推荐下载学习-mosaic.m Code Description The mosaic.m script operates as follows: First, it converts the values of the images from unsigned int to double. This is done because most of the MATLAB operations use double as default type. Then, it asks for the points to be matched. Once it has this information it performs a transformation based on an estimate. The value of each pixel is then chosen using a bilinear interpolation. Finally, the mosaicked image is displayed.
Platform: | Size: 74752 | Author: jiajia | Hits:

[Graph programReal-TimeRobustAlgorithmofDigitalImageStabilizatio

Description: 电子稳像的实时鲁棒性算法,首先对采集到的每帧图像建立高斯金字塔。然后在高斯金字塔的顶层进行 初估计,采用图像块法得到整像素的运动估计矢量。精估计采用光流梯度法。为提高鲁棒性,运用简化的M 收敛法 进行梯度约束。最后阶段采用双线性内插对当前帧与参考帧进行匹准-Electronic image stabilization, real-time robust algorithm, first collected in the establishment of Gaussian pyramid for each frame. And then carry out the early top-level Gaussian pyramid is estimated to be using the whole-pixel image block method of motion estimation vector. Precision is estimated using optical flow gradient method. To improve robustness, the use of M-convergence method to simplify constraint gradient. The final stage of using a bilinear interpolation on the current frame and reference frame bolts of quasi-
Platform: | Size: 940032 | Author: 才鸟 | Hits:

[Special EffectsInterpolation

Description: /************************************************************************* * 函数名称: * Interpolation() * 参数: * LPSTR lpDIBBits - 指向源DIB图像指针 * LONG lWidth - 源图像宽度(象素数) * LONG lHeight - 源图像高度(象素数) * FLOAT x - 插值元素的x坐标 * FLOAT y - 插值元素的y坐标 * 返回值: * unsigned char - 返回插值计算结果。 * 说明: * 该函数利用双线性插值算法来估算象素值。对于超出图像范围的象素, * 直接返回255。 ************************************************************************/-/************************************************************************** Function Name:* Interpolation ()* parameters:* LPSTR lpDIBBits- point to the source DIB image pointer* LONG lWidth- source image Width (pixels number)* LONG lHeight- source image height (pixel number)* FLOAT x- x coordinate of the element interpolation* FLOAT y- y coordinate of the element interpolation* Return value:* unsigned char- Back interpolation results.* Note:* This function is the bilinear interpolation algorithm to estimate the pixel value. For beyond the scope of the pixel image,* directly back to 255.************************************************************************/
Platform: | Size: 1024 | Author: mfm101 | Hits:

[matlabBilinear-interpolation-algorithm

Description: 图像的双线性插值放大算法中,目标图像中新创造的象素值,是由源图像位 置在它附近的2*2 区域4 个邻近象素的值通过加权平均计算得出的。 双线性内插 值算法放大后的图像质量较高,不会出现像素值不连续的的情况。然而次算法具 有低通滤波器的性质,使高频分量受损,所以可能会使图像轮廓在一定程度上变 得模糊。 -Bilinear interpolation algorithm to enlarge the image, the target image in the newly created pixel value is determined by the source image position in its area near the 4 2* 2 the value of neighboring pixels calculated by the weighted average. Bilinear interpolation algorithm to enlarge the image quality after the high pixel value does not appear the situation is not continuous. However, sub-algorithm has low-pass filter nature of the damage to the high frequency components, it may make the image contour to some extent become blurred.
Platform: | Size: 332800 | Author: chenjun | Hits:

[OpenCVcvResize

Description: Resize 圖像大小變換 void cvResize( const CvArr* src, CvArr* dst, int interpolation=CV_INTER_LINEAR ) src 輸入圖像. dst 輸出圖像. interpolation 插值方法: * CV_INTER_NN - 最近鄰插值, * CV_INTER_LINEAR - 雙線性插值 (預設使用) * CV_INTER_AREA - 使用象素關係重採樣。當圖像縮小時候,該方法可以避免波紋出現。當圖像放大時,類似於 CV_INTER_NN 方法.. * CV_INTER_CUBIC - 立方插值. 函數 cvResize 將圖像 src 改變尺寸得到與 dst 同樣大小。若設定 ROI,函數將按常規支持 ROI. -Resize the image size conversion void cvResize (const CvArr* src, CvArr* dst, int interpolation = CV_INTER_LINEAR) src input image. Dst output image. Interpolation interpolation method:* CV_INTER_NN- nearest neighbor interpolation,* CV_INTER_LINEAR- bilinear interpolation (default use)* CV_INTER_AREA- resampling using pixel relationship. The time when the image reduction, the method avoids ripple appears. When the image is zoomed in, like CV_INTER_NN method ..* CV_INTER_CUBIC- cubic interpolation. Function cvResize change the size of the image src and dst are the same size. If the setting ROI, will be general support functions ROI.
Platform: | Size: 1024 | Author: 張天彥 | Hits:

[Special EffectsSubPx

Description: 图像处理中常遇到“亚像素”这个词。亚像素实际上不存在,但是在想象中存在。于是用数学的方法计算出它的值。示例中将一幅图的高和宽都扩大到5倍,造成原来相邻两像素不相邻了,中间间隔了好几个像素单位,这些像素怎样定义它们,简单的,数学上用双线性插值的方法求出未知的像素。本程序提供一个代码示例,供参考,希望对您有帮助。-Frequently encountered in image processing "sub-pixel" is the word. Sub-pixel does not actually exist, but exist in the imagination. So using mathematical methods to calculate its value. Sample will be a picture height and width are expanded to five times, resulting in two adjacent original pixels are not adjacent, and an interval of several pixels, the pixels how to define them, a simple, mathematically using bilinear interpolation method to calculate the unknown pixels. This program provides a code sample, for reference, hope you have help.
Platform: | Size: 396288 | Author: xuxiangxing | Hits:

[Special Effectssrc

Description: 图像线性插值,包括nearest neighbor(pixel duplication),bilinear,bicubic,lanczos,B-spline, cubic,Fourier zero-padding (sinc)-Image linear interpolation, including nearest neighbor (pixel duplication), bilinear, bicubic, lanczos, B-spline, cubic, Fourier zero-padding (sinc)
Platform: | Size: 76800 | Author: richard | Hits:

[Special Effectspicture

Description: 该代码实现了以2为因子的图像升采样和降采样功能。 降采样包括使用平滑滤波器(with using the averaging filter)和不使用平滑滤波器(without using the averaging filter)两种方法。 升采样包括像素点直接复制(pixel replication method)和线性插值(bilinear interpolatoin method)两种方法。 降采样方法和升采样方法共有4种组合。程序运行后,给出了一个原始图片和四个结果图片。-Drop sampling include the use of smoothing filter (with using the averaging filter) and don t use smooth filter (without using the averaging filter) two kinds of methods. Rose sampling including pixels directly copy (pixel replication method) and linear interpolation (bilinear interpolatoin method) two kinds of methods. Drop sampling method and the rise of sampling methods there are four kinds of combination. The program after, are given a primitive pictures and four results pictures.
Platform: | Size: 4195328 | Author: 李云 | Hits:

[Special EffectsC

Description: 运用matlab对图像进行放大:像素复制法和双线性插值法。像素复制方法的图像缩放的原理主要是对原来输入图像的整行或是整列像素进行简单的复制与删除,达到改变图像大小的目的。双线性插值放大算法中,目标图像中新创造的象素值,是由原图像位置在它附近的小区域象素的值通过加权平均计算得出的。-Write MATLAB function to zoom a grayscale image from original size to the given output size through two different methods: a) pixel repetition and b) bilinear interpolation. Zoom the images processed in the Task 2 back to the original size using above mentioned methods. Calculate MSE and PSNR for the original and zoomed images using MATLAB methods written for the Task 1. Plot the MSE and PSNR as function of the size reduction ratio respectively. Define what combination of shrink/zoom methods provides the minimal MSE and maximal PSNR for the same size reduction ratio.
Platform: | Size: 5120 | Author: 宁可 | Hits:

[OtherBilinear-interpolation

Description: 双线性插值,可用于图像的放大,及对像素颜色的插值,能产生光滑的过渡效果-Bilinear interpolation can be used to enlarge the image, and the color of the pixel interpolation, to produce a smooth transition effect
Platform: | Size: 1024 | Author: lichangjiang | Hits:

[GDI-BitmapFunctionofBilinearInterpolation

Description: 函数主要实现图像处理过程中由于旋转缩放导致坐标不在整数位置,使用原始像素对当前像素点的计算方法:双线性插值!-The main function is to achieve image processing result in the rotation of the zoom position coordinates are not integers, the calculation method using the original pixel of the current pixel: bilinear interpolation!
Platform: | Size: 1024 | Author: 封小云 | Hits:

[Software Engineeringmatlap

Description: 当原图像像素点处于边缘区域时,沿Sobel算子确定的边缘方向进行自适应插值,当原图像像素点处于非边缘区域时,采用双线性插值法进行插值。-When the original image pixel is in the edge area, along the Sobel operator to determine the edge direction of adaptive interpolation, when the original image pixels in the non edge area by bilinear interpolation method to interpolate.
Platform: | Size: 25600 | Author: 邝涵菲 | Hits:

[matlabBilinear-filtering

Description: Bilinear filtering is a texture filtering method used to smooth textures when displayed larger or smaller than they actually are. Most of the time, when drawing a textured shape on the screen, the texture is not displayed exactly as it is stored, without any distortion. Because of this, most pixels will end up needing to use a point on the texture that is between texels, assuming the texels are points (as opposed to, say, squares) in the middle (or on the upper left corner, or anywhere else it does not matter, as long as it is consistent) of their respective cells . Bilinear filtering uses these points to perform bilinear interpolation between the four texels nearest to the point that the pixel represents (in the middle or upper left of the pixel, usually).-Bilinear filtering is a texture filtering method used to smooth textures when displayed larger or smaller than they actually are. Most of the time, when drawing a textured shape on the screen, the texture is not displayed exactly as it is stored, without any distortion. Because of this, most pixels will end up needing to use a point on the texture that is between texels, assuming the texels are points (as opposed to, say, squares) in the middle (or on the upper left corner, or anywhere else it does not matter, as long as it is consistent) of their respective cells . Bilinear filtering uses these points to perform bilinear interpolation between the four texels nearest to the point that the pixel represents (in the middle or upper left of the pixel, usually).
Platform: | Size: 1024 | Author: saadati | Hits:

[OtherProject 1

Description: 1. Image reduction: ? Alternative line reduction ? Fractal linear reduction to reduce images to any smaller size 2. Use two images to perform image enlargement: ? Pixel replication ? Nearest enlargement ? Bilinear interpolation ? Bicubic interpolation ? Fractal linear expansion to expand images to any larger size 3. Perform negative image operation ? On gray images ? On color images(1. Image reduction. 2. Use two images to perform image enlargement. 3. Perform negative image operation.)
Platform: | Size: 1080320 | Author: 韩小贺 | Hits:

[Special Effects双线性插值

Description: 利用双线性插值,获取亚像素位置的灰度值。适用于得到sift、surf得到的特征点坐标处的灰度值获取(The gray value of sub-pixel position is obtained by bilinear interpolation)
Platform: | Size: 13614080 | Author: 妖若仙 | Hits:
« 12 »

CodeBus www.codebus.net