Is there any function that increases or multiplies the amount of pixels in an image?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Raphael Ferreira
le 28 Mai 2018
Commenté : Raphael Ferreira
le 28 Mai 2018
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 commentaires
Réponse acceptée
Image Analyst
le 28 Mai 2018
Yes.
bigImage = imresize(smallImage, multiplicationFactor);
or
bigImage = imresize(smallImage, [desiredRows, desiredColumns]);
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!