Skip to content

Possible image processing to capture objects (segmentation) on aerial images

kerosin edited this page May 25, 2011 · 2 revisions

Possible image processing to capture objects (segmentation) on aerial images

Pixel-based:

Pro's

  • easy implementation
  • quick algorithms

Con's

  • no coherent segmentation or area
  • results depend solely on one-dimensional parameter

Edge-based:

Pro's

  • coherent segmentation or area
  • easy to find geometric representation

Con's

  • edge-tracking-algorithm required that can handle gaps or bifurcations

For more information about edge-detection in general see this wikipedia article

Region-based:

Pro's

  • coherent segmentation or area
  • finds regions with the properties that we defined

Con's

  • may cause holes or oversegmentation

Model-based

Pro's

  • better results

Con's

  • just suitable for special images

Texture-based

Pro's

  • could optimize the result in addition with other algorithms

Con's

  • hard to get good results

More information