I have a series of 37 b/w microscopy photos. The whole sample shifts slightly (by ~10 pixels) from photo to photo (systematic error). See an example photo here and download two photos pos4_0.dat and pos4_40.dat, shifted by ~10px. Moreover, there are major intensity variations. Nevertheless, the main structure is always visible.
I want to track the trajectory of some points through the photo series. Later on, I will stabilize my regions of interest. The last example in Documentation would be excactly what I need, but ImageFeatureTrack doesn't work.
import = Import[#] & /@ {"pos4_0.dat", "pos4_40.dat"}
images = Image[Rescale[#]] & /@ import
ImageFeatureTrack[images]
Out[55]={{}, {}}
How can I improve the performance of ImageFeatureTrack or solve my problem in another way?
Thanks.

ImageFeatureTracking. – IPoiler Sep 30 '15 at 15:59FindGeometricTransformorImageAlignare better suited to this problem. – Matthias Odisio Oct 01 '15 at 15:42