Coefficient computation for bicubic interpolation
    4 ビュー (過去 30 日間)
  
       古いコメントを表示
    
Dear Community Members,
Since bicubic interpolation for an image requires 16 coefficients which will eventually form the window with which we would convolve the sampled image, right. So my question is "how could I calculate these coefficients?". Do I have to get the matrix of the input image through matlab? If yes, how? Kindly don't suggest imread since it only shows how many rows and columns are present. If no, what is an exact way of computing the coefficients for bicubic interpolation?
Thanks in advance
0 件のコメント
回答 (1 件)
  Matt J
      
      
 2012 年 11 月 20 日
        
      編集済み: Matt J
      
      
 2012 年 11 月 20 日
  
      Normally, you would use interp2, griddedInterpolant, or the spline command to do bicubic interpolation.
Only in very special cases, like if you are interpolating at gridded sample points, can the operation be formulated as a convolution, and even then, griddedInterpolant probably does this for you internally.
18 件のコメント
  Matt J
      
      
 2012 年 11 月 21 日
				
      編集済み: Matt J
      
      
 2012 年 11 月 21 日
  
			My 2nd remark was referring to the factor-of-2 upsampling result, not the one that gave you an out-of-memory error.
Earlier, you said you thought that result looked distorted. If it looks distorted, the only thing to blame is either the data or the interpolation model.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

