Eliminating the Border Around a Generated Image

1 vue (au cours des 30 derniers jours)
Sarah
Sarah le 27 Août 2018
Commenté : Sarah le 27 Août 2018
I am creating images using the rectangle() function with various line and space sizes. I attached an example image to this question. I want to eliminate the border of white that surrounds the black rectangles. (It affects my pixel count calculations.) Currently, I am just using the imcrop() function, but the cropping dimensions have to change according to the line and space sizes. Is there a more efficient way than imcrop()?

Réponse acceptée

jonas
jonas le 27 Août 2018
Modifié(e) : jonas le 27 Août 2018
There is a function that will do this for you in one step, but I forgot what it's called. Here's a primitive solution for you!
[y1,x1]=find(BW==0,1,'first')
[y2,x2]=find(BW==0,1,'last')
BW2=BW(y1:y2,x1:x2)
imshow(BW2)
Basically you find the upper left and bottom right corners, and then crop a rectangle between those.
  5 commentaires
Image Analyst
Image Analyst le 27 Août 2018
Yep. 3 color channels - it's RGB. Try this first
BW = BW(:, :, 2); % Take green channel.
or else, if you want to keep it as a color image, do this:
BW2 = BW(y1:y2, x1:x2, :)
Sarah
Sarah le 27 Août 2018
Excellent, thank you. Now it all works well.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by