Image Segmentation
Image segmentation is the process of partitioning an image into meaningful
regions to simplify analysis and extract useful information.
Segmentation is a transition stage in image processing where input is an image
and output is either segmented image or attributes like size, tags, and region
labels.
It divides an image into regions of interest (ROI) based on discontinuity or
similarity in pixel properties.
What is ROI (Region of Interest)?
• ROI refers to specific, meaningful regions extracted from an image.
• These regions are selected based on importance for analysis, such as:
• Tumor area in medical imaging
• Vehicle number plate in surveillance
• Object boundaries in autonomous systems
, Purpose of ROI
• To focus processing only on relevant parts of the image
• To reduce computation by ignoring irrelevant areas
• To improve accuracy in detection and classification task
After segmentation, an image may be divided into multiple regions: R₁, R₂, R₃, ..., Rₙ
From these, only selected regions are considered as ROI:
ROI ⊆ {R₁, R₂, ..., Rₙ}
How ROI is Selected
• Based on intensity, texture, color, or motion
• Can be selected manually or automatically using:
• Manual: User-defined bounding boxes.
• Automatic: Thresholding, region growing, edge detection, feature extraction.
, Need for Segmentation
• To analyze each region separately
• To identify and locate objects and boundaries
• To extract features for further processing
• To simplify image representation for recognition tasks
Applications
• Object detection (e.g., vehicle make recognition)
• Medical imaging (tumor detection)
• Robotics (UGV vision systems)
• Image processing (boundary detection, feature extraction)