I need help about SIFT descriptors. I read some papers and reports but I found them a bit complicated. Can anyone recommend simple documents, presentations, reports about SIFT?
SIFT are quite standard in computer vision, though there are many types of features that are in use: histograms of gradients, wavelets, LESH, GLOH, ORB, SURF, to mention a few... You might want to check them out if working on image analysis.
As for the descriptor in SIFT, it is simply a set of binned orientation histograms computed on some pixel neighborhoods around the keypoint. The descriptor size may vary (it's not necessarily 128, you can make it smaller or wider) - and you could also use PCA/SVD for some dimensionality reduction, unless I am mistaken