Info

This question is closed. Reopen it to edit or answer.

Image segmentation based upon optical features

1 view (last 30 days)
Vijay
Vijay on 15 Dec 2014
Closed: MATLAB Answer Bot on 20 Aug 2021
I have an image with some texture in a region shown in first image. I want to segment the image based upon this texture. For this I have extracted feature as shown with blue squares (second image). I want to extract the region bound to the rectangular distribution of the features (shown by red dotted line).
Can somebody help me by suggesting some methodology to pursue this problem. Thanks

Answers (1)

Image Analyst
Image Analyst on 15 Dec 2014
I'd make a binary image with a point where each blue spot is. Then I'd dilate it with imdilate(). Then use my Extract biggest blob function attached, to get the largest blob, which will be the region you want. You can call bwboundaries on it if you want a list of the (x,y) coordinates of the perimeter.

Community Treasure Hunt

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

Start Hunting!