vote up 0 vote down star

I'm building a small app and I need to be able to morph one image into another. Any pointers would be appreciated.

flag
1  
If you mention your languages and frameworks it might be easier to help you out – Robert Gould Jan 20 '09 at 1:13

5 Answers

vote up 0 vote down

This link could be of interest:

http://www.owlnet.rice.edu/~elec539/Projects97/morphjrks/themainpage.html

link|flag
vote up 0 vote down

If you remember the Michael Jackson Video for Black or White, they used the Beier-Neely algorithm. I did a project as an undergraduate using that algorithm for a graphics class and found it pretty straight forward to use.

If you just need something to perform morphing, there is probably an implementation out there that you could use.

If you need to build something and include it in your application, this may help get you started:

http://www.hammerhead.com/thad/morph.html

link|flag
vote up 0 vote down

There's libmorph (GPLv2, C api), as used by xmorph and tkmorph/gtkmorph. There used to be a plugin to GIMP as well, but I know it was broken for a while; I don't know if it ever got updated.

You provide source and destination images, a mesh for each to identify corresponding points, and it will output interpolations between them (or animated transformations).

link|flag
vote up 0 vote down

Thanks for these pointers! I think I need to morph the image on the client, in Flex/Flash. My current thought is that I'll interpret a homework assignment that I found:

http://cns-web.bu.edu/~oph/cs580_assign1/p1.html

into ActionScript and build a UI around it. It uses the Beier-Neely algorithm that nickspilman mentioned. I'll let y'all know how it turns out.

link|flag
vote up 0 vote down

Wondering if anyone could throw some pointers on planar mesh morphing (eg. converting a rectangular surface to cylindrical/parabolic surface). Some detailed algorithms/code links will be greatly appreciated.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.