NAME

xmorph/morph/tkmorph/gtkmorph: image warping and dissolving (morphing) programs alltogether they form the Xmorph project, available at http://xmorph.sf.net

NEWS

In sep 2000, the Xmorph project has been completely reorganized to use the autoconf/automake. Please read the "THE NEW PROJECT" section.

AUTHORS

xmorph/morph/tkmorph/libmorph: Written and Copyright (C) 1994-2000 by Michael J. Gourlay
gtkmorph/libmorph: Written and Copyright (C) 2000-2004 by A C G Mennucci

LICENSE

The Xmorph project is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version.
It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Xmorph; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

DESCRIPTION

These are digital image warping programs, also known as "morphing" programs. These programs read, write, warp, and dissolve images, and read, write, create, and manipulate control meshes which determine the warping. xmorph and tkmorph have help pages built into them, so no external documentation is necessary. gtkmorph has a runtime guide.

libmorph

this library offers basic services of morphing and mesh editing

xmorph

xmorph runs under the X Window System, using the X library, X toolkit, X miscellaneous utilities, and the Athena widgets, all of which are publically available from the Open Group Inc., and part of the typical X installation. Xmorph also runs under Microsoft Windows NT and Windows 95, if you also have an X server and X libraries such as cygwin. xmorph is a GNU program.

gtkmorph

gtkmorph is another graphical interface for the warping engine libmorph; gtkmorph uses the gtk+ , gdk and gdk-pixbuf libraries; you may find these in ftp://ftp.gnome.org/pub . Gtkmorph is also more evolute than xmorph since it has been actively developed in last years.

tkmorph

tkmorph runs under many window systems, including the X Window System, Microsoft Windows, and Macintosh. Tkmorph requires the use of TCL, the Tool Command Language written by John Ousterhout and others, the widget Toolkit (Tk) that accompanies TCL, and the TCL/Tk shell called "wish" with the "load" command enabled, which allows dynamic loading of modules. When you build "tkmorph" you are actually building dynamic shared libraries to be loaded into an existing executable program, the "wish" shell. The actual "tkmorph" program is a TCL script. You can obtain TCL and Tk for free from http://sunscript.sun.com/ You will also need some TCL scripts from Donald K. Fellows: http://r8h.cs.man.ac.uk:8000/tcl/ You will need dirbrowser3 and all of the routines needed by dirbrowser3, which are inside dkflib, the "Generic Useful Library". tkmorph has not been developed in latest years and may be unusable nowadays.

morph

morph runs with no graphics display and is very portable. It is intended to be used alonside the other programs. Morph can perform image warping and dissolving, using meshes generated by Xmorph or Tkmorph or gtkmorph.

ON MORPHING

Morphing was invented and first used by Industrial Light and Magic. The original author of the first morphing algorithm is Douglas B. Smythe. If you can get ahold of the article, read Douglas B. Smythe's article ``A Two-Pass Mesh Warping Algorithm for Object Transformation and Image Interpolation'', ILM Technical Memo 1030, Computer Graphics Department, Lucasfilm Ltd., 1990. This kind of morphing is technically nothing more than a simultaneous warp and dissolve of an image. Another kind of morphing, which is far more involved than what xmorph does, uses 3D models of the two things being morphed. The first commercial use of morphing was in a sequence in the movie Willow. Since then, morphing has been widely used. Among the more memorable morphing sequences are those found in Michael Jackson's ``Black or White'' video, and in the movie Terminator 2. Be sure to read George Wolberg's Digital Image Warping. I have corresponded with George Wolberg about this program. I asked him whether he considered xmorph to be a violation of copyright of the algorithms in his book, since there are similarities. Mr. Wolberg assured me that my algorithms were different enough that there was no problem, and he seemed very interested and enthused about the existence of my public domain implementation. Also, the algorithms published in Mr. Wolberg's book had bugs in them which I and other xmorph contributors have found, and those bugs have been reported to George Wolberg, who verified my corrections to be proper. I was also told that these bugs were propagated on to Lucasfilm, although I have heard from no one at Lucasfilm directly.

THE NEW PROJECT

In sep 2000, when the gtkmorph code was added to this project, the xmorph project was completely reorganized to use the autoconf/automake programs by GNU. The source code was divided into subdirectories, as follows
/          <-  base autoconf stuff, and  README and etc
/po        <-  NLS (gettext) translation stuff
/intl      <-  gettext (for sites where it is not available)
/doc       <-  documentation
/libmorph  <-  the morphing code (the LIB_OBJS in the old project)
/xmorph    <-  the Athena code (the GUI_OBJS in the old project)
/gtkmorph  <-  the GTK code
/tkmorph   <-  the TK code
/example   <-  example morphing projects
The configuration of the project is now done thru two channels: the "configure" script , and the "Makefile.conf" file.

INSTALLATION

source code

xmorph, tkmorph, and morph are written in ANSI C. Tkmorph also has its graphical user interface and other operational code written in TCL. Tkmorph uses SWIG, the Simplified Wrapper Interface Generator, to create most of the TCL wrapper code.
gtkmorph is not strictly ANSI, you may need the gcc compiler to compile it; moreover some parts are in C++. gtkmorph needs to link to external libraries, namely: the GTK libraries; the Waili wavelet library (used for "wavelet equalization").

configuring

You may disable/enable features using the "configure" script; "configure" will generate a Makefile to build the project. You may not edit the file Makefile: it is automatically generated. Type "sh configure --help" to know about available options. Please refer to the file INSTALL for further instructions.

troubleshooting

The following tips were written for the old project: if you have problems, you better read them.
> GETTING HELP WITH COMPILING
> 
> If you have problems getting xmorph to compile, link, or run
> correctly, please do the following before asking me for help:
> 
> () Make sure you have the latest version of this program.
> 
> () If you do not know how to compile programs, then I assume that if
> you are taking on this task, you want to understand how the process
> works.  In that case, be willing to teach yourself how to use a
> computer the way most programmers do:  Read the man pages and use a lot
> of trial and error.  The process seems tedious and slow at first, but
> you will eventually find that most bugs are not serious, and that you
> can fix them yourself.
> 
> () Pay close attention to the error the computer gives you.  Is the
> error from the make program, the C preprocessor, the C compiler, or the
> linker?  Is the link dynamic or static?  If you feel ready to report a
> compile error, make sure, for example, that the error is in fact a
> compiler error, and not a linker error.  The error could also be a
> preprocessor error, such as when the header files you need can not be
> found.
> 
> () Carefully read the man page for your 'make' utility to see whether
> it operates in a nonstandard way.  If so, then you will either need
> another make program, or you will have to find the '-' option which
> forces your make program to behave properly.
> 
> () If the error is a preprocessor error, such as a complaint that
> header files could not be found, find out why the header files could
> not be found.  Perhaps on your machine, the header files are in a
> nonstandard place.  This is true for Solaris, for example.  Ask your
> system administrator for help finding them.
> 
> () Carefully read the man page and whatever other documentation you
> have for your compiler to see what the error the compiler gave you
> means.  Compiler errors are not as mysterious as people would like to
> pretend they are.
> 
> () Carefully read the man page for your static linker and your dynamic
> linker.  Know whether you are linking dynamic libraries or static
> libraries.  Most systems, sadly, do not have the same libraries for
> static and dynamic linking, so if one set does not work, try the
> other.  This fixes most linker problems I have seen so far,
> particularly on SunOS or Solaris, and FreeBSD.
> 
> () Ask your system administrator to help you.  Most of the so-called
> bug reports I receive have to do with the details of the machine the
> person is compiling on, and I can provide no insight into their
> problem.  The system administrator exists for a reason, which is to
> centralize knowledge about how your computers operate.
> 
> Occasionally I will make a new release of this program which has a bug,
> but most long-lasting releases have no known bugs, and the problems
> that are reported to me are in those cases always eventually solved by
> the user asking their system administrator for information, and the
> information is invariably something I could not know about because it
> is specific to your machine.  About a third of problems reported to me
> could have been handled without my help if the person read the Makefile
> comments.
> 
> 
> 
> 
> SUCCESS BUILDING XMORPH ON SPECIFIC SYSTEMS
> 
> This program has been tested on various models of Sun SPARCs running
> both SunOS and Solaris, SGI's running IRIX, Intel running Linux, Intel
> running MS Win95 and MS WinNT, DEC Alpha running Digital UNIX, and
> various HP machines running HPUX.  The code is so portable that no
> modifications are necessary to compile on these machines, except for
> those documented in the Makefile.  Of course, operating systems change,
> and new bugs are written, so if you find that the status of xmorph's
> portability has changed, then please let me know so that it can be
> fixed.  If you get Xmorph running on other architectures, please send
> email to me to report your success, and whether you had any problems
> compiling, and what the solutions were to those problem.
> 

REPORTING BUGS

Send bug reports to mennucc1@debian.org, or report them at the project page.

TODO

The GIMP plugin is broken.

RUNNING XMORPH or TKMORPH

There is a short xmorph man page, which tells you some nice things about how to start xmorph, but most of the information about how to actually use xmorph is contained within xmorph itself.
Xmorph is self-documented, so run the program to find out how to use it. The internal documentation is coded in "help_menu.c". Read all of the help menu information. The best way to learn how to use xmorph is to play with it after you read the help menus.
The general sequence of events in using xmorph is this:

RUNNING THE XMORPH GIMP PLUG-IN

The GIMP (GNU Image Manipulation Program, see http://www.gimp.org/) is a powerful Adobe Photoshop look-alike for Unix systems. Its plug-in interface allows external programs to manipulate GIMP images directly. If you have installed the GIMP, and compile xmorph with GIMP support (search for the word `GIMP' in the xmorph Makefile), the resulting binary can be used both as a standalone application and as a GIMP plugin. See the above section for information about running xmorph directly. To run xmorph as a GIMP plugin, just create a symbolic link from the xmorph binary to your GIMP plugin directory. If you are not the superuser, that command will be something like: ln -s /usr/local/bin/xmorph ~/.gimp/plug-ins/xmorph If you are the superuser, and you want to add morphing capabilities to every GIMP user on the system, do something like: ln -s /usr/local/bin/xmorph /usr/local/lib/gimp/0.99.15/plug-ins/xmorph Then, restart the GIMP application. There should now be a menu entry, Image/Filters/Effects/Morph, that you can use to do morphing. Open a new source RGB or grayscale image, click the right mouse button and select Filters/Effects/Morph. This starts the xmorph plugin, which resembles the main application, except you cannot load images from files. Select the destination GIMP image via the Destination menu, and be sure to set the sequence number of steps to a reasonable number (each step generates a new GIMP layer). You can run Morph Sequence/Preview Warp Sequence to view the morph without exporting it to the GIMP. When you are satisfied with the morph, run Morph Sequence/Warp Sequence. This will write the morph frames to new layers on top of the source image. The standard procedure is then to convert the image to an indexed image, then save the layers as an animated GIF. Caveat: the scripting interface to xmorph has not been well-tested because I'm not very familiar with script-fu.

CREATING MOTION ANIMATIONS (i.e. MAKING MOVIES FROM IMAGES)

This section covers this topic: how to make an animation of the progressive morphing between two images.
This section does not cover this topic: how to morph two different movies to build a third movie (in which some parts are dynamically moving and morphing, as you see in SF in movies); this is theoretically possible, but it would be very hard.

gtkmorph

gtkmorph can build an animation, with different output formats formats The above tools are not part of the xmorph package, and must be installed separately. Use the function morph sequence from the menu morph to make animations.

xmorph

See the "xmorph.man" man page for some info about how to make movies out of a sequence of images.
Some other systems have commercial tools for generating animations from a sequence of image files:

RUNNING GTKMORPH

Run it , and start the guide from the help menu.

ABOUT TARGA IMAGE FILE FORMAT

I [Gourlay] have been asked by many people what image file format xmorph uses. Xmorph uses the Targa image file format, also called TGA.
Several people say that they can not find a program that supports Targa image files, or ask what the Targa image file format is. Here are some answers:
TrueVision is a company that makes motion video hardware. Some of their hardware products are called "Targa something" where the "something" part depends on the particular model. The Targa TGA image file format has been around for a long time and is still used (or at least supported) by other software packages that handle digital video editing and compression/decompression. See the section in this README about making movies from a sequence of image files.
TGA works well because it is sufficiently flexible to use a number of storage schemes (including colormapped, 24-bit true color, 32-bit alpha true-color, and gray scale) and it provides for some compression using a form of run-length encoding which is modified to minimize the worst-case expansion.
Right now, Xmorph and tkmorph only read and write Targa image files. There is a PBMplus (and netpbm) utility to convert Targa image files to and from other formats. Also, Art Department Pro's Professional Conversion Pack (which runs on Amiga systems) has a Targa reader and writer. Targa files are also viewable from Image Magick utilities, but they have to have a .tga extension to them for some reason (probably because Targa files do not have a magic number in their header identifying them as Targas.) Adobe Premier can easily read a sequence of TGA files and turn them into a full motion video clip.
Gtkmorph reads images in almost any kind of format, and writes them as .ppm (and other formats if the GTK library has version >= 2.2).