Remove white border of a MATLAB figure
7 views (last 30 days)
Show older comments
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
Answers (1)
Image Analyst
on 3 May 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 Comments
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!