Top "Interpolation" questions

Anything related to function interpolation, i.e. the mathematical techniques for estimating the (unknown) value of a function in a point on the basis of a set of known values in other (usually nearby) points.

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
How to resize a bitmap image in C# without blending or filtering?

I have a gray scale image that I would like to enlarge so that I can better see the individual …

c# bitmap resize interpolation smoothing
Python 4D linear interpolation on a rectangular grid

I need to interpolate temperature data linearly in 4 dimensions (latitude, longitude, altitude and time). The number of points is fairly …

python numpy scipy interpolation
How to interpolate vertex normals?

I am trying to render a 3D model (from volvis.org) with Gouraud shading using the marching cubes algorithm. So …

opengl interpolation normals marching-cubes
Interpolation over regular grid in Python

I have been struggling to inteprolate the data for "empty" pixels in my 2D matrix. Basically, I understand (but not …

python numpy interpolation spatial-interpolation kriging
Interpolation algorithms when downscaling

Im trying to understand downscaling. I can see how interpolation algorithms such as bicubic and nearest neighbour can be used …

algorithm image interpolation
GLSL shader: Interpolate between more than two textures

I've implemented a heightmap in OpenGL. For now it is just a sine/cosine curved terrain. At the moment I …

java opengl lwjgl interpolation heightmap
CG: Specify a variable not to be interpolated between vertex and fragment shader

I'm using GC for writing shaders inside Unity3D. I'm using vertex colors attributes for passing some parameters to the …

unity3d shader interpolation cg
Best way to interpolate a numpy.ndarray along an axis

I have 4-dimensional data, say for the temperature, in an numpy.ndarray. The shape of the array is (ntime, nheight_…

python arrays optimization numpy interpolation
Spline interpolation with R

I want to perform a (cubic) spline interpolation for population data to "transform" yearly data into quarterly data. I know …

r interpolation spline