Search code examples
pythonopencvpython-2.7python-imaging-librarysimplecv

How to do image stitching using opencv (python), simplecv or pil?


How to do image stitching using opencv (python), simplecv or pil? or any other python library, i have an image which looks like this, created from 200 images, i need to stitch them in the correct order to form an image


Solution

  • Do you know the order they are in?

    Frankly if you are hoping to do it with image recognition and you only need one off I would use mechanical turk and let somebody spend 15mins doing it for a $1

    edit: the images are very small which makes it tricky to find enough features to match. I would start with a histogram approach to group images with similar sets of colours. Then you could use a fourier transform to find lines/structure at a similar direction and spacing. Are the image allowed to be rotated?