Remove white padding from image
Show older comments
I want to remove white padding from an image (see attachment). The size of the padding is random.
So I was thinking of reading in the image and then some looping to check if the entire row/column contains the value 255. However, looping is most of the time not the best way to do stuff. So I'm wondering if there's an easier way to do this, because I've found a similar question where the rows/columns contain 0, but I don't know if this can also be used for this case (with some adjustments).
Thanks in advance.
Accepted Answer
More Answers (1)
Image Analyst
on 14 Oct 2018
Try this:
rgbImage = imread('test-image.jpg');
subplot(2, 2, 1);
imshow(rgbImage);
title('Original RGB Image', 'FontSize', 20);
axis('on', 'image');
nonWhitePixels = any(rgbImage ~= 255, 3);
subplot(2, 2, 2);
imshow(nonWhitePixels)
title('Non-white Pixels Mask', 'FontSize', 20);
axis('on', 'image');
[maskRows, maskColumns] = find(nonWhitePixels);
% Crop image
croppedImage = rgbImage(min(maskRows):max(maskRows), min(maskColumns):max(maskColumns), :);
subplot(2, 2, 3);
imshow(croppedImage);
axis('on', 'image');
title('Cropped RGB Image', 'FontSize', 20);

Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!