フィルターのクリア

How does the function "imresize" work in details ?

24 ビュー (過去 30 日間)
Chakib
Chakib 2013 年 7 月 23 日
コメント済み: Rafi Ahmed 2021 年 7 月 16 日
During my internship I discovered the function "imresize" which I used it to enhance the resolution of images (for example : I transformed a 32x32 image into a 128x128 image) and it gave me really good results.
So I read the code of the function and it didn't help me to understand it.
So I am asking you to explain to me how it works or to give me links to articles and publications on resolution enhancement theories. The second choice would be better for me.
Thanks to all and sorry for my english.
BELAFDIL Chakib
  1 件のコメント
aditi bhateja
aditi bhateja 2020 年 9 月 25 日
Can you provide the code of the function? Any link or publications?

サインインしてコメントする。

採用された回答

Elad
Elad 2013 年 7 月 23 日
I'm not sure, (did'nt look at the function's code). but, probably using some kind of bi-linear interrpolation: http://en.wikipedia.org/wiki/Bilinear_interpolation
  1 件のコメント
Bachtiar Muhammad Lubis
Bachtiar Muhammad Lubis 2019 年 5 月 1 日
I think imresize function using Bicubic Interpolation as default.

サインインしてコメントする。

その他の回答 (1 件)

Alex Taylor
Alex Taylor 2013 年 7 月 23 日
I would take at the series on spatial transformations from Steve on Image Processing, starting with Terminology and Notation:
Imresize is simply applying a scale transformation to the original image. You could think of this operation as the application of the following affine transformation matrix to the original image:
T = [4 0 0; 0 4 0; 0 0 1];
Imresize uses inverse mapping to figure out where each point in the output grid maps in the input grid. We then interpolate within the input grid to determine the output grid values. By default, imresize uses bicubic interpolation by default.
Applying a scale geometric transformation to an image is not a "resolution enhancement" technique. You do not have any more information in the output image than you started with in the input image, you have simply interpolated to create a larger grid than you started with.
This is not applicable to your particular problem, because you are increasing the size of your original image, but if you resize with a scale factor of less than 1, imresize applies an anti-aliasing filter prior to resizing.
  1 件のコメント
Rafi Ahmed
Rafi Ahmed 2021 年 7 月 16 日
Hello Alex,
I have a question regarding the grid values. If I slice an image for the row elements only (e.g. 360 by 360 grid image is sliced to 180 by 360), how does that affect the grid size and values? Does it reduce the grid values too?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeImage Filtering and Enhancement についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by