Classifying images
Automated Remote Sensing (ARS)is rarely ever done in the visible spectrum. ARS is the processing of an image without any human input. The most commonly available wavelengths outside of the visible spectrum are infrared and near-infrared. The following scene is a thermal image (band 10
) from a fairly recent Landsat 8 flyover of the U.S. Gulf Coast from New Orleans, Louisiana to Mobile, Alabama. The major natural features in the image are labeled so that you can orient yourself:
As every pixel in this image has a reflectance value, it is information. Python can see these values and pick out features in the same way that we intuitively do by grouping the related pixel values. We can colorize the pixels based on their relation to each other to simplify the image and view the related features. This technique is called classification.
Classification can range from fairly simple groupings based only on some value distribution algorithm derived from the histogram, to complex methods...