Image segmentation involves partitioning an image into regions, linear structures (line segments, curve segments), or 2D shapes (circles, ellipses). Common region segmentation methods include region growing, clustering, and split-merge. Region growing starts with seed pixels and grows regions based on similarity. Clustering groups pixels into clusters to minimize dissimilarity within clusters. The Hough transform detects lines or curves by accumulating votes in a parameter space based on edge pixels.