How can I change the values of certain segments to 0?

1 次查看(过去 30 天)
I have a segmented image, it looks like this:
and I would like to further filter out some parts of the image by "excluding" the segments in the image that do not fit certain dimensions (I have the certain dimensions figured out already). How can I change the values of these segments that I would like exclude to 0 instead of 1?

采纳的回答

Benjamin Thompson
An image is just a matrix in MATLAB. If you know the rows and columns in your image that correspond to segments you want to zero out, then use the colon notation to set portions of the matrix to zero:
A(rowStart:rowEnd,colStart:colEnd) = 0
  2 个评论
Andrea Labudzki
Andrea Labudzki 2022-2-3
Hi, I have a follow-up question for you. So I have this segmented image and I have the propertires of the regions (height and width). I've found which regions I would like to keep, meaning that I found which dimensions I would like to keep. How can I find which regions have these dimensions so I can set all the other regions to 0?

请先登录,再进行评论。

更多回答(0 个)

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by