Changes between Version 19 and Version 20 of GSoC/2016/Additional_segmentation_algorithms/mean_shift


Ignore:
Timestamp:
Sep 13, 2016, 6:13:26 PM (8 years ago)
Author:
hao2309
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GSoC/2016/Additional_segmentation_algorithms/mean_shift

    v19 v20  
    110110
    111111=== Fast scanning algorithm ===
    112  The concept of fast scanning algorithm is to scan from the upper-left corner to lower-right corner of the whole image and determine if we can merge the pixel into an existed clustering. The merged criterion is based on our assigned threshold. If the difference between the pixel value and the average pixel value of the adjacent cluster is smaller than the threshold, then this pixel can be merged into the cluster.[[BR]]
     112The concept of fast scanning algorithm is to scan from the upper-left corner to lower-right corner of the whole image and determine if we can merge the pixel into an existed clustering. The merged criterion is based on our assigned threshold. If the difference between the pixel value and the average pixel value of the adjacent cluster is smaller than the threshold, then this pixel can be merged into the cluster.[[BR]]
    113113'''Pros:'''
    114114* The pixels of each cluster are connected and have similar pixel value, i.e. it has good shape connectivity.
     
    152152This example uses the panchromatic image inluded in the NC sample dataset.
    153153Set up an imagery gourp:
     154
    154155{{{i.group group=singleband input=lsat7_2002_80}}}
    155156
    156157Set the segmentation region, the first testing case will be the full image.
     158
    157159{{{g.region raster=lsat7_2002_80 -p}}}
    158160
    159161Firstly test the region with least input arguments.
     162
    160163{{{i.segment --o group=singleband  output=lsat7_2002_80_MM_min1 method=mean_shift thresh=0.01}}}
    161164