10 cards showing.
Minimum Distance classifier — advantages and disadvantages?
likely classification✅ Advantages - ⚡ No unclassified pixels (every pixel has some nearest mean) - 🚀 Very fast decision rule
❌ Disadvantages - 🎯 Force-fits outlier pixels that should be flagged unclassified - 📐 Ignores class variability — treats tight clusters and loose clusters equally
Min Distance: everyone gets a class (no gaps) but weird pixels get force-fit. Ignores shape. Opposite of Parallelepiped (which leaves gaps).
Parallelepiped classifier — advantages and disadvantages?
likely classification✅ Advantages - ⚡ Very simple, very fast - 🎯 Good first-pass broad classification
❌ Disadvantages - 🕳️ Gap regions — pixels outside all boxes stay unclassified - ↗️ Corner overlaps — pixels in two boxes get assigned ambiguously
Boxes. Pixel in a box → class. Pixel in NO box → unclassified (gap). Pixel in 2+ boxes (corner overlap) → wrong class. Fast but sloppy.
Supervised vs. unsupervised classification — key differences?
essential classificationTwo camps of pixel classification:
After unsupervised you still label the clusters by hand — that’s where Recode comes in.
Supervised needs a TEACHER (training samples). Unsupervised is CLUSTERING — the computer invents the classes, you label afterward.
Covariance between two bands — formula?
maybe classificationMeasures how Band Q and Band R vary together around their means. The full covariance matrix is what Max Likelihood and Mahalanobis use.
Four common decision rules for supervised classification?
likely classificationThe four ways the computer assigns a pixel to a class, ranked by sophistication:
Anderson (1976) LULC — nine Level I classes?
likely classification📚 Level II adds 37 subclasses total — used as the standard hierarchical scheme for RS data.
ISODATA — three parameters the user must set?
essential classificationN-T-M: Number (clusters), Threshold (convergence %), Max-iterations. Terminates on whichever hits first: T reached or M hit.
Supervised classification — three-step procedure?
essential classificationTrain → Stats → Classify. You TEACH the computer with samples, it LEARNS signatures (mean + covariance), then APPLIES a decision rule to every pixel.
Maximum Likelihood classifier — how it works and its main assumption?
essential classificationPicture each land-cover class (forest, water, city) as a fuzzy cloud floating in spectral space. Max Likelihood asks the question:
“Which cloud is this pixel most likely sitting inside?”
Crucially, it considers each cloud’s shape (covariance), not just its center. Min Distance only looks at the center — it’s like deciding which city you’re closest to without checking which one’s borders you’re inside.
That’s why ML usually wins on accuracy: it understands a tightly-grouped class is more confident, while a wide loose class lets in more variety.
For each pixel, compute the probability it belongs to each class. Assign to the most likely class.
ML uses **mean + covariance**, not just the mean. Min Distance ignores shape (just the mean). Mahalanobis adds shape. Max Likelihood adds priors on top. The full discriminant formula lives in the long-form review — the *concept* lives here.
ISODATA convergence threshold T — worked example (10 pixels, 3 changed)?
maybe classificationIf user set T = 95%, 70% is not enough → run another iteration.