How hard is it to morph a moving object? (aka Superman?)

Hi everyone,
This is one of my first posts, and I want to thank you all for contributing great posts here. I am a newbie to Shake, so I have a feeling the answer will be "Read The Manual!" But here goes...
I want to know how difficult it will be to morph a moving object. For example, my 2 1/2 year old son loves Superman, I mean loves Superman, toys, pajamas, movies, cant get enough. So I just finished shooting a very amateur mission impossible type short film with him, and he loved doing that so much that I thought I would go ahead and try this again with him. Instead this time, I will have him dress like Clark Kent and run and change into Superman, with flying scenes and the whole bit. So my question is this, how difficult would it be to morph him running, opening the shirt, and changing into a running Superman? Yes I will read the manual, but I first wanted some serious opinions if my attempts will be valid and worth while. I do not have a green screen for the flying scenes yet, but have searched other forums and have scene that taping of noeon greem posterboard to work equally as well for that. As for the morphing, I planned on having my Sony HDV-HC1 camera on a tripod, and just retaking him running with the Kent outfit, and then with the Superman outfit, and morphing the object from that point, hoping to start and stop in the same manner on each take.
I realize this isnt Hollywood, but its something that I want to look back on, no matter how amateur it is, and just say that I felt proud doing that for both him and me. Thanks for the input everyone and God Bless!
Hidalgo

Thnak you for the reply. I watched the tutorial and it is very ineteresting. Although the morphing is performed with 2 pictures, I believe I would hjust have to morph two frames together, however my fear is that it will be so quick that the viewer will not have the opportunity to see the change take place. Am I correct in saying that I would have to morph several frames in order to see a less drastic effect, and if so, how is that done? Any suggestions are greatly appreciated.
(The effect I am thinking of is in Superman II, when Kent runs down an alley and morphs into Superman, gradual but very cool and effective.)
Thanks again and God Bless.
Hidalgo

Similar Messages

  • How to change the direction of a moving object

    I am trying to make a connect four program for class, and i am trying to make it so the red check piece move down. But instead it move left n right -.-, ive tried changing the coordinates but then the piece would just spin in circle or spins out of control. Here is the code i have right now, can someone help me please =D .
    import java.awt.*;*
    *public class Circle{*
    *private int centerX, centerY, radius;*
    *private Color color;*
    *private int direction, velocity;*
    *private boolean filled;*
    *public Circle(int x, int y, int r, Color c){*
    *centerX = x;*
    *centerY = y;*
    *radius = r;*
    *color = c;*
    *direction = 0;*
    *velocity = 0;*
    *filled = false;*
    *public void draw(Graphics g){*
    *Color oldColor = g.getColor();*
    *g.setColor(color);*
    *// Translates circle's center to rectangle's origin for drawing.*
    *if (filled)*
    *g.fillOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *else*
    *g.drawOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *g.setColor(oldColor);*
    *public void fill(Graphics g){*
    *Color oldColor = g.getColor();*
    *g.setColor(color);*
    *// Translates circle's center to rectangle's origin for drawing.*
    *g.fillOval(centerX - radius, centerY - radius, radius*  2, radius  *2);*
    *g.setColor(oldColor);*
    *public boolean containsPoint(int x, int y){*
    *int xSquared = (x - centerX)*  (x - centerX);
    int ySquared = (y - centerY)  *(y - centerY);*
    *int radiusSquared = radius*  radius;
    return xSquared  +ySquared - radiusSquared <= 0;+
    +}+
    +public void move(int xAmount, int yAmount){+
    +centerX = centerX+  xAmount;
    centerY = centerY  +yAmount;+
    +}+
    +public int getRadius(){+
    +return radius;+
    +}+
    +public int getX(){+
    +return centerX;+
    +}+
    +public int getY(){+
    +return centerY;+
    +}+
    +public void setVelocity(int v){+
    +velocity = v;+
    +}+  
    +public void setDirection(int d){+
    +direction = d % 360;+
    +}+
    +public void turn(int degrees){+
    +direction = (direction+  degrees) % 360;
    // Moves the circle in the current direction using its
    // current velocity
    public void move(){
    move((int)(velocity  *Math.cos(Math.toRadians(direction))),*
    *(int)(velocity*  Math.sin(Math.toRadians(direction))));
    public void setFilled(boolean b){
    filled = b;
    import javax.swing.*;*
    *import java.awt.*;
    import java.awt.event.*;
    public class ColorPanel extends JPanel{
    private Circle circle;
    private javax.swing.Timer timer;
    public ColorPanel(Color backColor, int width, int height){
    setBackground(backColor);
    setPreferredSize(new Dimension(width, height));
    // Circle with center point (25, 100) and radius 25
    circle = new Circle(25, height / 2, 25, Color.red);
    circle.setFilled(true);
    // Aim due west to hit left boundary first
    circle.setDirection(90);
    // Move 5 pixels per unit of time
    circle.setVelocity(5);
    // Move every 5 milliseconds
    timer = new javax.swing.Timer(5, new MoveListener());
    timer.start();
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    circle.fill(g);     
    private class MoveListener implements ActionListener{
    public void actionPerformed(ActionEvent e){
    int x = circle.getX();
    int radius = circle.getRadius();
    int width = getWidth();
    // Check for boundaries and reverse direction
    // if necessary
    if (x - radius <= 0 || x + radius >= width)
    circle.turn(90);
    circle.move();
    repaint();
    }with that code my circle just spins back n forth rapidly. How can i make it so it drop to a certain location everytime i click the mouse?

    lilkenny1337 wrote:
    I am trying to make a connect four program for class, and i am trying to make it so the red check piece move down.
    How can i make it so it drop to a certain location everytime i click the mouse?Try this:
    public class ColorPanel extends JPanel {
        private Circle circle;
        private Timer timer;
        private int stepX, stepY, xM, yM;
        public ColorPanel(final Color backColor, final int width, final int height) {
            setBackground(backColor);
            setPreferredSize(new Dimension(width, height));
            // Circle with center point (25, 100) and radius 25
            circle = new Circle(25, height / 2, 25, Color.red);
            circle.setFilled(true);
            // Aim due west to hit left boundary first
            circle.setDirection(90);
            // Move 5 pixels per unit of time
            circle.setVelocity(5);
            // Move every 5 milliseconds
            final MoveListener ml = new MoveListener();
            timer = new Timer(5, ml);
            addMouseListener(new MouseAdapter() {
                @Override
                public void mousePressed(final MouseEvent e) {
                    if (timer.isRunning()) {
                        return;
                    xM = e.getX();
                    yM = e.getY();
                    int xC = circle.getX();
                    int yC = circle.getY();
                    stepX = (xM - xC) / 10;
                    stepY = (yM - yC) / 10;
                    timer.start();
        @Override
        public void paintComponent(final Graphics g) {
            super.paintComponent(g);
            circle.fill(g);
        private class MoveListener implements ActionListener {
            public void actionPerformed(final ActionEvent e) {
                if ((stepX > 0 && circle.getX() >= xM)
                        || (stepX < 0 && circle.getX() <= xM)) {
                    stepX = 0;
                if ((stepY > 0 && circle.getY() >= yM)
                        || (stepY < 0 && circle.getY() <= yM)) {
                    stepY = 0;
                if (stepX == 0 && stepY == 0) {
                    timer.stop();
                    circle.setLocation(xM, yM);
    /* add this method in the class "Circle":
        public void setLocation(int xM, int yM) {
            centerX = xM;
            centerY = yM;
                } else {
                    circle.move(stepX, stepY);
                repaint();
    }

  • How can I track text to a moving object?

    I am looking for a way to connect a moving football player with an identity tag.  ie:  I have seen video racing cars with an identity tag connected to the vehicle.  Thank you for your assistants.  I am using  Creative Cloud, Adobe Premiere 6 with Encore 6. 
    Sarge.
    Message was edited by: Kevin Monahan
    Reason: needed a more searchable title

    Football clip on V1. Tag graphic/title on V2. Use Adobe Motion effect, with keyframes, to have the tag follow the player movements. Yes it is manual and may be tedious. Alternative is After Effects using a tracker tool which may or may not work.
    Thanks
    Jeff Pulera
    Safe Harbor Computers

  • How to show movies and pictures as moving objects over animations.

    I'm creating a wedding movie, and i want to display some pics and video as well as the typical airplane animation flying from Toronto to Mexico with the red dotted line.. Any ideas where to start?

    Studio X wrote:
    .. typical airplane animation flying from Toronto to Mexico with the red dotted line..Any ideas where to start?
    In Toronto?

  • Video titling behind moving objects

    i recently saw a titling effect in a video, in which a motorcycle drove across the screen and as it passed a title appeared behind it. how does one create video titling behind moving objects? i have no experience in animation, so i'm guessing that the video layer is duplicated and the top layer masked, frame by frame? would an 8-point garbage matte work?

    You won't have an easy time doing this in FCP, but Motion, After Effects, or ultimately Shake, can do this a lot easier. You have to rotoscope the motorcycle, accounting for the rims, and space between the engine parts, or anywhere else where you would logically see through to the background, then duplicate that layer on top of the original, with the text in between the two layers. Depending on how long the clip is, you're in for a long haul. But if the footage is anything but DV25, clip analysis and automated keyframing might serve you well as a starting point after the initial mask is made.

  • How hard is Motion 4 to learn

    I am looking at getting FCS mainly for Motion 4 to do some intro's and animation like this: http://www.youtube.com/watch?v=Uos1djIqcSc
    and of course to create my own animations...
    How hard is it to learn to do stuff like this (having never touched Motion or FCS before).
    I assume I can simply drag and drop my images (PNG, JPG) into Motion and then use particles, and the effects it comes with to get started?
    I was able to sorta play with it for about 10 minutes the other day at an Apple Store near me, but wasn't able to successfully import any png files into motion (just showed a black screen).
    Is this product similar to other Apple products? Meaning low learning curve to get results?
    Mainly I would use Motion4 to create Website Intro's (export the MOV and then make a SWF (Flash File) from the MOV... As well as make some "Demo Reels" of the graphics work I do...
    Another animation I would like to create is Signature grows; meaning it looks like someone is signing the screen where a signature grows (kinda like all the floral grows I see). I assume you use a Vector signature and apply a "grow behavior) and export to a MOV... but it might be more complex than that...
    Some say After Effects is better, some say Motion4 some say both... Eventually I will have both, but trying to figure out which is easier to learn and get results with out of the box without reading 500 books to learn it...
    Message was edited by: NASCAR3D

    Not a dumb question at all, welcome to the family.
    Unfortunately, we don't have enough information from you or about what might be a huge issue with other folks, although they are using different media types like jpegs.
    Very sorry your initial experience has not been satisfactory.
    In other versions of Motion, tutorial footage and projects were supplied on the installation disks. I think they've all been moved online. Have you tried any of them?
    BTW: If we make any progress on your issues, you should start a new thread.
    bogiesan

  • How can I access files that I moved from an older MacBook Pro to a newer one via Firewire and Migration assistant.  The files show up on the new MacBook but cannot be opened.  Thanks!

    How can I access files that I moved from an older MacBook Pro to a newer one via Firewire and Migration assistant?  The files show up on the new MacBook but cannot be opened.  Thanks!

    Get info then check permissions then add your curent user name (it was probably different on old Mac) and give your username full read/write permissions.

  • Bluetooth on T500 and Win7-64bits... How hard can it be??!!

    Hello,
    I've read several posts about this, but none of them solved my problem.
    I have a T500 2055-RH2, with windows 7 64bits.
    I just bought a bluetooth mouse online and imagine how I feel after 3 hours of useless debugging to install a mouse. Actually, my problem is more basic, I just can't seem to have bluetooth working.
    I tried to install: Bluetooth with Enhanced Data Rate Software II for Windows 7, Vista - ThinkPad
    When I do install this, it eventually says I have no bluetooth device, so somehow my bluetooth adapter is NOT enabled. I then tried to do Fn-F5 to enable it, but it's no use, because I can only see my WIFI in there, no trace of bluetooth...
    From the forum, I tried to install: ThinkPad Power Management driver for Windows 7
    I think it was already installed, but I installed it anyway, still no change, nothing in Fn-F5, still nothing.
    I then even installed a WIDCOMM (broadcom) driver, but then again, it says it can't find any bluetooth device.
    Are there any depencies I don't know about? Should I reinstall anything? What the HELL is wrong?! How hard is it supposed to be to install such a basic function as bluetooth??!
    Should I throw that laptop out the window? Because I really want to... (arg!)
    Help please...!
    Thanks...
    Solved!
    Go to Solution.

    atreid, welcome to the forum,
    not wanting to be the "boo-man", are you sure your T500 has Bluetooth? It's not showing as having it on the support site when I look up your system.
    Product: ThinkPad T500 2055-RH2
    Original description: Based on 2055-CTO: T9400(2.53GHz), 4GB RAM, 320GB 7200rpm HD, 15.4in 1680x1050, 256MB ATI Radeon HD3650, CDRW/DVDRW, Intel 802.11agn, WWAN upgradeable, Modem, 1Gb Ethernet, UltraNav, Secure chip, Camera, 6c Li-Ion, WinVista Home Basic 32
    If I select another system, e.g. 20552BG, Bluetooth is listed as a component. T500 Display Parts List - Bluetooth daughter card.
    Maybe you could check if the hardware should be installed? You need to enter your type and s/n on this site and see if it mentions anything about Bluetooth, let us know what you find out.
    A just in case: -  Please do not post you s/n on these boards.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • How hard is it to replace the hard drive on a 21.5 inch iMac.

    My iMac is telling me the hard drive is failing.  After a web search, I discovered that you need suction cups to take off the glass to replace the drive.  I'm adjust wondering how hard it is to do?  I'm Fairly mechanically inclined, so I think I can do it myself.  I'd just like to know how tricky it is.

    If this is a new 2011 iMac, you can't replace the hard drive except by Apple as they have proprietary software installed on hard drives to monitor the status.
    Very likely it's not, as you would be making a warranty call instead of trying to replace it yourself.
    However, the info is out there to keep in mind when you buy a new iMac.

  • Just bought a 2tb external hard drive with the intention of moving my iPhoto data files on it. I have so much of my 500 gigs being used up by images and video. Questions: Will this foul up my iPhoto app? Do I need to point iPhoto to this new location?

    Just bought a 2tb external hard drive with the intention of moving my iPhoto data files to it. I have so much of my 500 gigs being used up by images and video. Questions: Will this foul up my iPhoto app?
    Do I need to point iPhoto to this new location?
    Thanks!

    Are you running a Managed or a Referenced Library?
    A Managed Library, is the default setting, and iPhoto copies files into the iPhoto Library when Importing. The files are then stored in the Library package
    A Referenced Library is when iPhoto is NOT copying the files into the iPhoto Library when importing because you made a change at iPhoto -> Preferences -> Advanced. (You unchecked the option to copy files into the Library on import) The files are then stored where ever you put them and not in the Library package. In this scenario you are responsible for the File Management.
    Assuming a Managed Library:
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • How do I pull up the left control panel that allows you to move from text to moving objects on page?

    How do I pull up the left control panel that allows you to move from text to moving objects on page?

    Do you mean this one:
    If so, go to the Window menu and make sure that Tools is checked.

  • How Hard is it to program in Java.Swing

    Hi
    I wanted to program using java.swing component but i don't have any idea where i should start.
    I have been programming in java using java.Awt
    and i can do simple array programing.
    So how hard is it, and Where should i start learning java.swing. Ps I don't know anything about Swing, I don't even know what it is.
    Thanks you

    Hi
    As the previous guy said it is quite easy, and that link should teach you the basics. What I want to remind you of is that Swing uses up more memory when run. But it also have a few nicer extra goodies that make coding a little bit easier. Have fun with it.
    Here are a few more sites
    <http://manning.spindoczine.com/sbe/>
    <http://java.sun.com/docs/books/tutorial/uiswing/>
    Ciao

  • How does one perform mailbox to mailbox moving of email messages w/ Messaging 3.X?

    How does one perform mailbox to mailbox moving of email messages with Messaging 3.X?
    <P>
    In an ISP environment there are times that a user changes his
    login name (his unique identifier in the ISP's network, also used as
    his email address) from one value to another. It is very convenient
    for the ISP to be able to move messages from the user's old mailbox
    to the user's new mailbox when this situation occurs.
    <P>
    With Messaging Server 2.0, this was easily accomplished by simply
    moving the mail messages on disk. However, with the added complexity
    of Messaging 3.0 where there are back links, reference counts, etc.,
    associated with mail messages, moving files on disk from one mailbox
    to another is no longer valid.
    <P>
    The MoveUser utility, which is new in MS 3.X, moves messages from
    one messaging server to another or from one maildrop path to another.
    Can this utility be used to move messages from one mailbox to another?
    <P>
    The answer is yes, it can. The user should be aware that if
    duplicate email message id's exist in the mailbox before the
    move, the messages related to the duplicate message id's will
    be duplicated in the target mailbox.
    <P>
    See the online documentation contained with the product or the
    Messaging 3.X Administrator's Guide for exact syntax.

    Hi
    If I understand you correctly and if you are using Apple Mail version 2.0 or above navigate to /Users/Home folder. The Home folder is the one with the house icon, within that folder you will see a Library folder, within that folder you’ll see a Mail folder, within that folder you’ll see a folder that begins with POP followed by your name, within that folder will be a folder called INBOX.mbox, within that folder is a Messages folder. All the mail that you see within the application are there. They will be numbered and have a file suffix of .emlx. You can move these wherever you like.
    If you are using Entourage X, or Entourage 2004 you can easily multiple select mail messages, addresses etc from within the application and drag whatever you’ve selected to wherever you like.
    Tony

  • I created an album from photos taken off three different cameras. I am sorting the photos manually and when I close iPhoto, the photos move back either by date or by camera import time. How can I keep the photos from moving around?

    I created an album from photos taken off three different cameras. I am sorting the photos manually and when I close iPhoto, the photos move back either by date or by camera import time. How can I keep the photos from moving around?

    Don't tell us, tell them
    http://www.apple.com/feedback/macosx.html is the place for feature requests and feedback

  • Simply put, I do not like like the new color coding "dots" and I do not like having to press the Command key before double clicking to open files in a new window. How hard would have been to include the old version of these two features?

    Simply put, I do not like like the new color coding "dots" and I do not like having to press the Command key before double clicking to open files in a new window. How hard would have been to include the old version of these two features?

    Apple - Mac OS X - Feedback

Maybe you are looking for

  • The document could not be saved. A file error has occurred.

    I opened an Adobe Reader PDF form that I can save data on from a folder in my computer and now it won't let me save any of the changes I made to it. I know I have been able to save my changes in the past, but now it continues to give me this error me

  • Creating a button?

    Hi, i m a begginer and and just got Flash 8 pro , but do not know much abt flash....so i just need a little help.... how can i make a button in flash tht is similar to the buttons in msn music....ex.. http://music.msn.com/search/all/?ss=temperature .

  • Weird Photoshop CC Crashing?

    Weird problem. Win7 x64, latest and greatest PS CC. Only recently, I'm getting a weird crash, usually while working with a large file, and trying to zoom in via the magnifying lens. What happens is the image does not zoom. And the image gets this wei

  • Acro3D.msi is missing; how can I get it and install it?

    I tried to install Adobe Acrobat Pro v10 twice, but I receive an error message: "Error 1361 - A network error occurred while attempting to read from the file C:Windows\Installer\Acro3D.msi" I checked this location and there is no Acro3D.msi file in t

  • 5.99 SILICON CASE FOR MICRO!! THANK GO

    thats price includes shippign too!! go to http://www.pcmicrostore.com/PartDetail.aspx?q=p:0502797 .