I am currently working on a experiment that i took multiple photos of a scene on diferent days with a fixed camera position. The problem is that on real world it is hard to keep the camera perfectly fixed.
What i need is to fix the small variance I got automaticaly. The research I made returned methods considering more complex assumption, like camera pose estimation, homography estimation etc. For me its enought to discover just the movement at the image plane returning an x and y. A perfect solution would be a function such as:
function [movx movy] = detectMotion(im1,im2).
The solution I already made was to calculate some image features, like harris or hessian, match them and after manualy select the best ones and use the difference of their position as a camera displacement estimation. I dont know if this is good enough but it would be better if it was made automaticaly.