Tagged Questions
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 ...
1
vote
4answers
718 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
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
239 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
611 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
829 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 ...