how do i identify the background of binary image?

1 view (last 30 days)
i have a binary image and I want to identify the background of the image? the image is bellow.
  4 Comments
naya taaj
naya taaj on 17 Mar 2018
Edited: naya taaj on 17 Mar 2018
this is my image that i got from triangle thresholding method, i want to identify the background in it so i can remove it.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 17 Mar 2018
In your case, the background is white. So you already have a background mask and you just need to tell us what "remove" means to you. Do you want to blacken it in the original image? If so, just do
% Mask the image using bsxfun() function to multiply the mask by each channel individually.
maskedRgbImage = bsxfun(@times, rgbImage, cast(~mask, 'like', rgbImage));
You can also use a gray scale image instead of rgbImage in the above code. Or, simply do
grayImage(mask) = 0;
  17 Comments
Image Analyst
Image Analyst on 18 Mar 2018
Edited: Image Analyst on 18 Mar 2018
Did you see at the bottom of Steve's blog where it said "Get the MATLAB code"? If you click on that, it will run a javascript and all the code for the watershed is there. Of course, I don't know if it's exactly the process done in your paper so you might have to compare and use whichever one you want if they're different.
naya taaj
naya taaj on 18 Mar 2018
Can anyone tell me how to join mathwork newsgroup, or how i can communicate with a certain mathwork participant ???

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!