필터 지우기
필터 지우기

How make low resolution image to become high resolution??

조회 수: 15 (최근 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 CenterFile Exchange에서 Read, 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