필터 지우기
필터 지우기

how to increase the resolution of an image?

조회 수: 99 (최근 30일)
Hamza
Hamza 2013년 10월 20일
댓글: Walter Roberson 2020년 6월 15일
Hi guys; I want some help, I ve an image which I want to increase its resolution 5 times, but I don't know how I can do that, if u ve any ideas, plz let me know.thanks

채택된 답변

Image Analyst
Image Analyst 2013년 10월 20일
You can increase the number of elements by using imresize
bigImage = imresize(smallImage, 5);
Of course that does not increase the real world spatial resolution (only Hollywood can do that), so if the image is blurry, you'll still have the same blurry image, just with 5 times as many pixels.
  댓글 수: 6
Image Analyst
Image Analyst 2013년 11월 20일
Here's an example of how Hollywood thinks you can do it: http://bitsandpieces.us/2013/11/19/gee-whiz-csi-technology/
oza san
oza san 2017년 3월 29일
dear sir i want to enhance the resolution using cubic interpolation mind if you can help me. in case if you have some sample codes i will be grateful.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Hasan Nawaz
Hasan Nawaz 2019년 6월 12일
How can I change resolution of satellite images r satellite data(enviromental data)?
  댓글 수: 1
Image Analyst
Image Analyst 2019년 6월 12일
What do you mean by resolution? You can't change the optical resolution of the image - that's determined by the satellite. You can however change the image size in pixels with imresize(). Of course increasing the number of pixels won't get you any more optical resolution (except in Hollywood movies).

댓글을 달려면 로그인하십시오.


r r
r r 2020년 6월 12일
I want to extract nanoparticles from the image and want to increase the resolution and clarity of the image
  댓글 수: 2
Image Analyst
Image Analyst 2020년 6월 12일
How is this announcement an "Answer" to Hamza's question?
Walter Roberson
Walter Roberson 2020년 6월 15일
That does not appear to be a question about MATLAB.
You need to research image enhancement algorithms.
MATLAB does not have an "increase resolution" function. It has an image resize operation, but image resizing does not increase resolution. In order to increase resolution, you need additional information beyond what is in the image itself.
For example processing satellite images to read license plates involves adding additional information about what different kinds of license plates look like, and about the fonts used for different kinds of license plates.
See also

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by