[GIS] Handling mountain shadows when classifying Landsat 8

classificationdemlandsat 8remote sensingshadow

I'm trying to classify some area in northern Mongolia using Landsat 8 satellite images from 2013. Since the recordings were made in winter, the sun is very low at the acquisition time. Therefore there are very long and dark shadows from the mountains.

I'm able to identify this shadow using a DEM, as described in this Question: How to Remove Topographic Effects Like Shadows from Landsat Image

How can I perform a supervised classification for the clipped shadowed area? Is it possibile to enhance this areas? I tried some band ratios, but I don't know which is the best for my task.

In this image you can see that there are some vegetated areas in the dark shadows, but it is not possible to classify them.

example for some shadowed areas

Best Answer

Actually, it is not granted that you will be able to recover some information from the shadowed areas. However, I once dealt successfully with (cloud) shadows in a hyperspectral image. The aim was simple land cover classification. Here's what I did. I'm not sure how this would work with Landsat images, but since it is very simple you should give it a try.

Once I detected the shadow I simply performed an histogram matching of the shadowed areas to the rest of the image. Be careful since by doing this you assume that the spectral signal in shadowed areas and the one in illuminated areas belong more or less to the same classes (~ same distributions). Although this is a very simple and simplistic method, I was able to correctly classify shadowed pixels at the cost of some small shadow border errors. Maybe you can stack all possible band ratios to the image and renormalize all the features before classification, this could even further reduce shadow effects. You probably have to use a robust classifier then.

EDIT: Additionally you could normalize each pixel to have unit norm (by looking at each pixel as a spectral vector). This should also help in removing shadow effects.

Related Question