123
-=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- (c) WidthPadding Industries 1987 0|706|0 -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=-
Socoder -> Off Topic -> Morphing

Tue, 13 Dec 2016, 14:41
spinal
I want to morph between two small b/w images, anyone got any software to do that? looking for a similar effect to how dpaint did it.

-=-=-
Check out my excellent homepage!
Tue, 13 Dec 2016, 14:41
Jayenkai
Morph tools used to be a dime a dozen, but much like Perspective Warping, and image Wrapping, they're no longer part of modern tools..

God knows why.

Dig out DPaint!

-=-=-
''Load, Next List!''
Wed, 14 Dec 2016, 00:03
spinal
I've started a blitz 'pixel mover' as I'm using small monochrome images, it's going to be just a case of setting where each pixel from the first image needs to be in the second, then move them there in x steps.
Just have to move x,y to x1,y1... you'd think I'd remember how to do that. Anyway, couple of long days at work, so that might take me a few days.

-=-=-
Check out my excellent homepage!
Wed, 14 Dec 2016, 00:11
Jayenkai
A=A-((A-B)/C)

Or in this case
X=X-((X-X1)/8.0)
and again for Y

-=-=-
''Load, Next List!''
Wed, 14 Dec 2016, 14:08
spinal
8.0?
Wed, 14 Dec 2016, 14:22
Jayenkai
Or any other value...
Approximate number of steps that it takes to get from A to B

Note that it'll start off fast, then slow down as it gets closer.
Works best with Floats..

Also, you might want a..
if Abs(a-b)<0.5 then a=b
in there, too.

-=-=-
''Load, Next List!''
Thu, 15 Dec 2016, 00:59
spinal
I was thinking more about even steps, shouldn'y this work....



-=-=-
Check out my excellent homepage!
Thu, 15 Dec 2016, 02:32
Jayenkai
Switch For a to "= numframes to 1 step -1" , and use that as the divider instead of numframes. Should be ok.

-=-=-
''Load, Next List!''
Thu, 15 Dec 2016, 14:39
spinal
this works well enough!


-=-=-
Check out my excellent homepage!