[android-developers] Image Morphing

2012-07-07 Thread Sadhna Upadhyay
Hi everybody,
   can some one tell me that how to do image morphing in android,is it
possible or not if yes then how ? pls help me.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Image Morphing

2012-07-07 Thread Fred Niggle
Hi everybody,
   can some one tell me that how to do image morphing in android,is it
possible or not if yes then how ?

*Yes it is possible.*

 pls help me.

*First* use google, locate some java programming tutorials and work through
them, *then* when you find something problematic post here with your code
and logcat dumps to gain guidance or advice.

*If* *any of the above is unclear please google search about.*

Best regards,
Fred

On 7 July 2012 20:21, Sadhna Upadhyay sadhna.braah...@gmail.com wrote:

 Hi everybody,
can some one tell me that how to do image morphing in android,is it
 possible or not if yes then how ? pls help me.

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Ubuntu Speech 
inputhttps://play.google.com/store/apps/details?id=com.nds.ubuntuspeechinputis
now available on Google Play, along with Magnetic
Door Alarm 
apphttps://play.google.com/store/apps/details?id=com.nds.magneticdooralarm
.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Image Morphing

2012-07-07 Thread Nobu Games
Oh my god, I want to marry your post

On Saturday, July 7, 2012 3:25:36 PM UTC-5, Fred Niggle wrote:

 Hi everybody,
can some one tell me that how to do image morphing in android,is it 
 possible or not if yes then how ?

 *Yes it is possible.*

  pls help me.

 *First* use google, locate some java programming tutorials and work 
 through them, *then* when you find something problematic post here with 
 your code and logcat dumps to gain guidance or advice.

 *If* *any of the above is unclear please google search about.*

 Best regards,
 Fred

 On 7 July 2012 20:21, Sadhna Upadhyay sadhna.braah...@gmail.com wrote:

 Hi everybody,
can some one tell me that how to do image morphing in android,is 
 it possible or not if yes then how ? pls help me.
  
 -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




 -- 
 Ubuntu Speech 
 inputhttps://play.google.com/store/apps/details?id=com.nds.ubuntuspeechinputis
  now available on Google Play, along with Magnetic 
 Door Alarm 
 apphttps://play.google.com/store/apps/details?id=com.nds.magneticdooralarm
 .

  

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Image Morphing

2012-07-07 Thread dan.x.sheph...@googlemail.com
Image morphing can be implemented as easily on android as any other computer, 
you probably are better off learning the method first forgetting the fact you 
want to implement it on android. There are many tachniques. A good place to 
start may be to google point bassed morphing with thin plate splines. 
Essentially a morph is performed by mixing warping and blending if two images. 
One issue you might have on android is performace. Lots of pixels to update 
each envolving matrix arithmatic proportional in size to the number of landmark 
morphing points.  You could may want to implement it in native ndk c code and 
call it from java or better still see if you can implement it for the gpu using 
vertex/fragment shaders.  Good luck, Dan

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en