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.
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!