I would like to detect and get the shift between two images but I can't find anything except similarity comparaison. The idea is same as this post but in PHP instead of Python : How to detect a shift between images
I imagine something like this : $coordinate = image_shift($image_1, $image_2);
$coordinate
would be something like this :
['x' => 10, 'y' => -12, 'tilt' => 0.2]
x and y in pixels and tilt in radian.
Thanks in advance for your help.