In [1]:
Copied!
%matplotlib inline
from IPython.display import HTML,Image,SVG,YouTubeVideo
%matplotlib inline
from IPython.display import HTML,Image,SVG,YouTubeVideo
Region based segmentation¶
Because edge based segmentation leave contours not closed, one may be interested in searching for regions.
Region growing¶
Starting from one point of the “object” region and recruiting neighbouring pixels.
Split and merge¶
In [2]:
Copied!
Image('../data/quadtree.png')
Image('../data/quadtree.png')
Out[2]:
In [3]:
Copied!
Image('../data/split_example.png')
Image('../data/split_example.png')
Out[3]:
see also:
- Split and merge DIP p.461
the watershed transform¶
see also:
- watershed in the mathematical morphology section
In [ ]:
Copied!