How make low resolution image to become high resolution??

19 ビュー (過去 30 日間)
hajer jon
hajer jon 2019 年 10 月 26 日
回答済み: Sai Bhargav Avula 2019 年 10 月 26 日
Hi
i work at video analysis and the image frame with reslution need to be high reslution how can i prosess this??

採用された回答

Sai Bhargav Avula
Sai Bhargav Avula 2019 年 10 月 26 日

The second argument can be the scale with which you want to resize the image or the size to which you want it to be resized. Also, you can mention the interpolation method if you are scaling up the resolution

For example K = imresize(I,[100 150]) Resizes the image to 100 rows and 150 columns

Or

J = imresize(I,1.25); Scales up you present image to 1.25 times

L = imresize(I,1.5,'bilinear'); Scales the image by 1.5 times by using bilinear interpolation method

その他の回答 (2 件)

Nadir Altinbas
Nadir Altinbas 2019 年 10 月 26 日

Sai Bhargav Avula
Sai Bhargav Avula 2019 年 10 月 26 日
編集済み: Sai Bhargav Avula 2019 年 10 月 26 日
Hi, You can try using imresize() function to adjust the resolution of your image.
Hope this helps!
  1 件のコメント
hajer jon
hajer jon 2019 年 10 月 26 日
Thank you How can it’s help? What should I write in second input argument to become high resolution??

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

カテゴリ

Help Center および File ExchangeRead, Write, and Modify Image についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by