Bicubic Interpolation
Bicubic Interpolation
Bicubic interpolation takes it a larger grid.
- Result depends on 16 different values
- Yields a cubic spline interpolation
Now, does this actually have any differences practically?
- Yes, you are left with artifacts when you are downsampling
If you want accurate results, you should do bicubic interpolation.
Method | Speed | Quality |
---|---|---|
NN | ++ | - |
Bilinear | + | 0 |
Bicubic | - | ++ |