Top "Bicubic" questions

Bicubic interpolation is an extension of cubic interpolation for interpolating data points on a two dimensional regular grid.

Bi-Cubic Interpolation Algorithm for Image Scaling

I'm trying to write a basic bicubic resize algorithm to resize a 24-bit RGB bitmap. I have a general understanding …

c++ image algorithm image-processing bicubic
Efficient Bicubic filtering code in GLSL?

I'm wondering if anyone has complete, working, and efficient code to do bicubic texture filtering in glsl. There is this: …

glsl fragment-shader bicubic
How to draw and scale a bitmap on a canvas using bicubic interpolation in Android?

I want to draw a bitmap on a canvas with bigger size than it is. I can use canvas.drawBitmap(…

android drawing resize bitmap bicubic
How do you do bicubic (or other non-linear) interpolation of re-sampled audio data?

I'm writing some code that plays back WAV files at different speeds, so that the wave is either slower and …

audio signal-processing interpolation resampling bicubic
HTML5 Canvas Image Scaling Issue

I am trying to make a pixel art themed game in HTML5 canvas, and as part of that I take 10…

html html5-canvas nearest-neighbor bicubic
Cubic/Curve Smooth Interpolation in C#

Below is a cubic interpolation function: public float Smooth(float start, float end, float amount) { // Clamp to 0-1; amount = (amount &…

c# math linear-interpolation bicubic
Bicubic Interpolation?

I looked through the internet, and in terms of Bicubic Interpolation, I can't find a simple equation for it. Wikipedia's …

c# bicubic
How does bicubic interpolation work?

After reading text about this said topic, i found out that it considers 16 of the original neighboring pixels. What i …

image-processing pixel interpolation pixels bicubic
Bicubic interpolation using openCV

I want to perform an image resize using bicubic interpolation. However, my output image, new_img looks exactly the same …

c++ image-processing opencv image-resizing bicubic
Explanation of Bicubic interpolation in Matlab?

I am confused by Matlab's example on Bicubic interpolation at http://www.mathworks.com/help/vision/ug/interpolation-methods.html#f13689 …

algorithm matlab interpolation bicubic