Is there any function that increases or multiplies the amount of pixels in an image?
2 ビュー (過去 30 日間)
古いコメントを表示
Raphael Ferreira
2018 年 5 月 28 日
コメント済み: Raphael Ferreira
2018 年 5 月 28 日
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.
0 件のコメント
採用された回答
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!