15 pts
mandatory
Supervised classification — details, advantages, disadvantages.
Reveal answer
Model answer
Supervised classification — you teach the computer what each class looks like, then it sorts every pixel.
How it works
- Find places you know — forest patches, water bodies, urban blocks.
- Sample those — give the computer color signatures of each class.
- Pick a decision rule — Max Likelihood is the most common.
- Run it — every pixel in the scene gets a class label.
- Check accuracy — compare to ground-truth points you didn’t use for training (confusion matrix, kappa).
Strengths
- Higher accuracy than unsupervised when your training data is good.
- You control the class scheme — useful when you have a specific question.
- Works well when classes are spectrally distinct.
Weaknesses
- Training-sample collection is slow — fieldwork, photo interpretation, ground truth.
- Bias risk — if you forget a class, the computer can’t predict it.
- Max Likelihood assumes Gaussian classes — fails on weird-shaped distributions.
🔬 Show the science / technical version
Procedure
- Define training sites (AOIs) for each known class.
- Compute class signatures (mean + covariance per band).
- Apply a decision rule — Min Distance, Mahalanobis, Max Likelihood, Parallelepiped — to every pixel.
- Accuracy assessment (confusion matrix, kappa).
Advantages
- Analyst controls the class scheme — matches the question.
- Higher accuracy than unsupervised when training data is good.
- Works well when classes are spectrally distinct + well-sampled.
Disadvantages
- Labor-intensive — good ground truth takes time.
- Bias risk — unrepresented classes won’t be predicted.
- Max Likelihood assumes multivariate-normal class distributions.