I have a three feature points in an image and their matches in another image.
My question is how to find a homography that relates these matches to each other? I know I should solve P3P problem.But I don't know how exactly normalize point sets to this end. After solving P3P how should I get Homography matrix.
Suppose my camera Intrinsic parameters are known. After that I want to compute 6DOF rigid transform and map every arbitrary points in Image 1 to Image 2.
It's worth mentioning that I don't want to use OpenCV native function like cv::findHomography()
I'd be grateful If you reply clear and complete. Because I followed the instruction from here and here but did not get a correct solution.