Object-based image analysis
From OTBWiki
OTB allows to implement Object-Based Image Analysis (OBIA) by using ITK's Label Object framework [1]. This allows to represent a segmented image as a set of regions and not anymore as a set of pixels. Added to the compression rate achieved by this kind of description, the main advantage of this approach is the possibility to operate at the segment (or object level).
A classical OBIA pipeline will use the following steps:
- Image segmentation (the whole or only parts of it)
- Image to LabelObjectMap (a kind of std::map<LabelObject>) transformation
- Eventual relabeling
- Attribute computation for the regions using the image before segmentation
- Shape attributes (available in the original IJ submission)
- Statistics attributes (available in the original IJ submission)
- Attributes for radiometry, textures, etc. (to be added in OTB)
- Object filtering
- Remove/select objects under a condition (area less than X, NDVI higher than X, etc.)
- Keep N objects
- LabelObjectMap to image transformation
There are some missing things which would be very useful in OTB
- LabelObject to VectorData conversions
- Object-based classification