Tagged Questions
The bicubic tag has no wiki summary.
10
votes
1answer
6k 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 ...
8
votes
2answers
5k 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) ? ...
6
votes
4answers
2k 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
1answer
858 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 ...
1
vote
4answers
721 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 ...
1
vote
3answers
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 ...
0
votes
2answers
98 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
240 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
614 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 ...
0
votes
1answer
832 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
410 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 ...
0
votes
3answers
2k 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 ...