필터 지우기
필터 지우기

Is there any function that increases or multiplies the amount of pixels in an image?

조회 수: 1 (최근 30일)
Example: If an image contains 13 megapixel, is there a function that can double to 26 megapixels? I'm doing a project to detect tiny geometric shapes and I need to know if this function exists.

채택된 답변

Image Analyst
Image Analyst 2018년 5월 28일
Yes.
bigImage = imresize(smallImage, multiplicationFactor);
or
bigImage = imresize(smallImage, [desiredRows, desiredColumns]);

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by