Remove white border of a MATLAB figure
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I want to use some MATLAB figures in a document. MATLAB figures always have a white border around them. Is it possible to crop that border from inside MATLAB?
-saima
Réponses (1)
Image Analyst
le 3 Mai 2013
You can use imcrop() if you have an image.
croppedImage = imcrop(fullImage, [x, y, width, height]);
You can also use indexing:
croppedImage = fullImage(row1:row2, col1:col2, :);
If it's a binary image, you can use imclearborder().
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!