I am implementing my own image stitching algorithms(using opencv but not the stitcher class), so far i can stitch 2 images using following steps:
- Detect keypoints
- Descript keypoints
- Match keypoints
- Calculate homography
- Warp images
- Blend images
What i'd like to know is, that if let's say i'd like to do video stitching which means i need this algorithm to be fast, could i skip the steps 1-4? i would only compute homography once and then use same matrix for all other frames - of course cameras would be in static position