Vivek Tiwari
Vivek Tiwari

Reputation: 11

combining of two images in Android

I want to combine two images by overlapping them at some fixed x-axis displacement. Suppose There are two images and both are the left and right snaps of the same panoramic view ,

  1. Now the problem is to find the X -axis displacement of the right image overlapping the left one so that both pixels match and they form the panoramic view.
  2. The next issue is how they can be merged so that they feel like a single image without any defect.

I have to do this using android , but please tell me using java /android how this can be done.

Upvotes: 1

Views: 380

Answers (1)

Marek R
Marek R

Reputation: 38161

The problem is complex. Note that each picture is a projection of word on plane. For each photo you can assume that point of projection is same but plane of projection is different. This means that common parts on each photo are distorted (bended) in different way. This means that transition between photos is not linear and simple transition is not enough!

here you can find better description of the problem.

Upvotes: 1

Related Questions