0

I have images of 4 different positions of a road and I want to stitch them together using OpenCV.
The problem is that the changes between the pictures is not "smooth", the color and the texture of the images is not the same so it doesn't seem like this is actually 1 big picture.

Angie Quijano
  • 4,167
  • 3
  • 25
  • 30
Ransar
  • 23
  • 5
  • i would probably use imagemagick or just a photo processing program (read: photoshop, gimp) to stitch together images. – Cheers and hth. - Alf Sep 06 '15 at 09:03
  • hmm... I need to do this using opencv. I thaught about histogram matching between the edges of the images, someone can help me with that? – Ransar Sep 06 '15 at 13:26

1 Answers1

1

You could try out the sticher class of opencv. Specially the examples examples opencv brings in the source code at opencv_source_code/samples/cpp/stitching.cpp and at opencv_source_code/samples/cpp/stitching_detailed.cpp.

If the result of executing the stiching example in your images is what you want you can explore the code to see how it was done.

ikaro
  • 703
  • 6
  • 10