ios,image,opencv,image-stitching,opencv-stitching
I solved this problem. I had accidentally been saving the images captured on the app to the same location thereby sending the stitching algorithm in OpenCV multiple instances of the same image.
python,image,image-processing,image-stitching
Forget Python - use ImageMagic (http://www.imagemagick.org/) +append to create row convert tpn_1.jpg tpn_2.jpg tpn_3.jpg +append row_1.jpg -append to create column convert row_1.jpg row_2.jpg row_3.jpg -append final.jpg You can try also montage (from ImageMagic too) to get all in one command montage -mode concatenate -tile 3x3 tpn_* final.jpg BTW: on Linux...
android,opencv,homography,image-stitching,opencv4android
Quick answer: I would say that you don't have enough overlap between your images. If you look at your matches (what you call "drawed features"), most of them are wrong. As a first test, try to stitch two images that have, say, 80% overlap. More details: Big picture: When you...