0
12kviews
Segmentation techniques: Region growing and split and merge
1 Answer
written 7.9 years ago by |
Let R represent the entire image region segmentation as a process that partitions R into n sub-regions R_1,R_2,…,R_N such that,
$R_1∪R_2∪…∪R_(N=) R$
$R_i$ is connected region where i=1,2,…,N
$R_i∩R_j=∅ for i≠j$
Predicate $(R_i )$ =True for all i=1,2,..,N
There are two different approaches for region oriented segmentation.
Pixel aggregation procedure starts with a set of seed point and from these grows region by appending for each seed point those neighboring pixels that have similar proportion.
Region Splitting & Merging: