Bicubic interpolation is an extension of cubic interpolation for interpolating data points on a two dimensional regular grid. The interpolated surface is smoother than corresponding surfaces obtained by bilinear interpolation or nearest-neighbor interpolation. Bicubic interpolation can be ...
0
votes
0answers
69 views
Scale 2D-Array using Bicubic Interpolation
I want to scale an arbitrary double[][] to another double[][] with different dimensions. The values of the resulting array should be calculated based on the input array using bicubic interpolation.
I ...
0
votes
1answer
41 views
What is “t” in bicubic interpolation?
I was reading about bicublic interpolation on wikipedia. I came across the variable t which is not defined.
The equation is:
Can anyone please tell what this variable means and what are the usual ...
0
votes
0answers
50 views
Bicubic sharper algorithm
I've been programming an iOS game where player can draw a picture using his finger and save it. His "painting" will be visible later in a reduced (approximately 4 times) size.
Therefore, here arises a ...
1
vote
0answers
67 views
Enlarging image using GD results in dismal quality compared to Scalr (JAVA)
I have been dealing with very small images and I have tried to discover the best way to increase them. I compared two different sources: imagecopyresampled (PHP: ...
2
votes
1answer
740 views
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 of the math involved, and I'm using this implementation from Google Code as a guide. ...
0
votes
2answers
219 views
Bi-cubic image resize algorithm
I've been trying to learn about image resizing algorithms, such as nearest neighbor, bi-cubic and bi-linear interpolation algorithms. I've studied the math a bit, and I'm now looking at existing ...
1
vote
0answers
78 views
How does bicubic interpolation work with MRI data?
I am trying to add slices to a stack of MRI images. I did a linear interpolation by calculating every new slice as the average of the immediate top and bottom slices. So while doing bicubic, do I just ...
1
vote
0answers
251 views
Bicubic Interpolation on Scattered Data in Matlab
I was wondering if there is a way to do bicubic interpolation on a scattered data set (2d)? I did some online searches and figured out that bicubic patches (not sure what these are) need to be fitted ...
0
votes
2answers
828 views
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:
...
3
votes
1answer
263 views
Massive artifacting in bicubic interpolation; how to fix?
I'm trying to implement a bicubic interpolation algorithm to reconstruct higher-resolution data from a heightmap. After some falstarts and sets of instructions containing nearly-incomprehensible math ...
1
vote
2answers
421 views
Why is my bicubic interpolation of discrete data looking ugly?
i have a 128x128 array of elevation data (elevations from -400m to 8000m are displayed using 9 colors) and i need to resize it to 512x512. I did it with bicubic interpolation, but the result looks ...
3
votes
1answer
2k views
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 10x20 or so sized images and draw them onto the canvas with the following code:
ctx.drawImage(image, 20, 20, ...
0
votes
1answer
1k views
Bicubic interpolation using openCV
I want to perform an image resize using bicubic interpolation. However, my output image, new_img looks exactly the same as my original loaded image, img. Also, when I found the width and height of ...
0
votes
0answers
297 views
Bicubic Interpolation for 2 dimensional noise
So I have a noise function here:
public double getNoiseLevelAtPosition(int x, int y) {
int xmin = (int) (double) x / octave0;
int xmax = xmin + 1;
int ymin = (int) (double) y / octave0;
...
0
votes
1answer
686 views
How to perform Bicubic Interpolation when not all neighbours are known?
Given only 4 edge values boxed in red, if I want to find out value at f(1,2) and it's nearest 16 neighbours(not sure if itself can be included?) are show in the picture, can I assign 0 values to the ...
0
votes
2answers
367 views
Whats wrong in the following cpp Bucubic interpolation code for Image Resizing
I am trying to upsample an Image using Bicubic Interpoloation, I need the accurate values matching the cvResize() function of opencv, but the results of following code is not matching the results from ...
0
votes
2answers
658 views
Bicubic Interpolation for Non-regular grids?
I am working on a project where I have a set of known measurements (x,y,z,a) and an input (z,a). I need to be able to interpolate the (x,y,z) so that I can get a list of possible (x,y) coordinates ...
0
votes
1answer
1k views
OpenCL bicubic interpolation kernel failed with error CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST
Bicubic interpolation is one of the common interpolation method, but I can not find any working implementation on OpenCL. I was decided to write bicubic interpolation on OpenCL myself, but ...
I have ...
1
vote
4answers
1k views
How can I best improve the execution time of a bicubic interpolation algorithm?
I'm developing some image processing software in C++ on Intel which has to run a bicubic interpolation algorithm on small (about 1kpx) images over and over again. This takes a lot of time, and I'm ...
0
votes
1answer
1k views
Image Resampling Bicubic Interpolation Java
I have resized image but its quality is low. i heard of bicubic interpolation but i cant get any implementation code. Here is my code:
private static BufferedImage resize(BufferedImage image, int ...
0
votes
1answer
538 views
Resize images client-side to thumbnails results in jaggy and ugly pictures
Im trying to use thumbnails on the fly so I won't have to have both thumbs and actual images. I had em done with PHP (with the excellent imagecopyresampled function) which worked great.
Now I'm ...
13
votes
1answer
13k views
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(bitmap, null, destRect, null); but that gives a poor quality, as the result is pixelated, if the source ...
2
votes
2answers
6k views
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 want to know is how does it compute the color value of the new pixel. If the color ...
4
votes
1answer
1k views
IE6 image scaling with bicubic filter
I have a project where I have to resize some images in the actual browser side.
IE8, FF3 et al all apply a filter to smooth the resizing of the image, so in these browsers everything looks good.
In ...
10
votes
2answers
8k views
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 > 1f) ? 1f : amount;
amount = (amount < 0f) ? ...
9
votes
4answers
4k views
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 lower-pitched, or faster and higher-pitched. I'm currently using simple linear ...
3
votes
4answers
2k views
Java 2D Image resize ignoring bicubic/bilinear interpolation rendering hints (OS X + linux)
I'm trying to create thumbnails for uploaded images in a JRuby/Rails app using the Image Voodoo plugin - the problem is the resized thumbnails look like... ass.
It seems that the code to generate the ...
