How to motion blur an object into a scene?

I am using match move to attach an image to an object in my video.  The object sometime moves around enough where there is significant motion blur.  Obviously I need the image that I am adding to match this motion blur.  The motion blur filter doesn't seem to work for this (at least by itself).  All it does it make the image blurry within side of the bounds of the image.  The motion blur in any given frame is happening along a path, and the image needs to be stretched along that path as well as blurred into the background.  How do I accomplish this effect?

Hi,
You can turn on motion blur. Have a look in the view menu to turn this on. Have a look in the project properties to set the number of samples and shutter angle.  However this is a per project setting rather than by layer.
Or you could a directional blur and keyframe the amount as you need.
hth
Adam

Similar Messages

  • How do I motion blur and object?

    I have an Ace Of Spade playing card that I scanned as a PSD.
    I imported it into Motion and moved it around the scene. I want to apply a motion blur to it but when I use the movement blur filter it does not motion blur the object.
    What am I doing wrong?

    There's info about motion blur in Motion's help. You don't need a filter for this. Motion blur is part of the Project and View settings. Project settings determine how much blur and how it is sampled. View settings turn it on and off for display and determine whether blur carries over to FCP. You need to do a couple things to get motion blur to work. First, check Motion blur under the View settings in Motion. Second, go to your sequence settings in FCP and under Render Control set Master Templates and Motion Projects quality to Best. Settings of Draft and Normal will not include motion blur. The amount of blur is controlled by the shutter angle and sample settings in the Motion project settings.
    BTW, the filter you tried is for blurring motion in clips that already contain motion. For example, you could exaggerate the motion blur of cars moving through an intersection. When the cars move, the filter blurs them. When they stop, the blur stops. Make sense?

  • How to convert a Graphics object into a JPG image?

    I have this simple question about how to make a Graphics object into a JPG file...
    I just need the names of the classes or the packages ... I'll figure out the rest of the details...
    Thanks...

    Anyway this might come in handy
    JPEGUtils.java
    ============
    * Created on Jun 22, 2005 by @author Tom Jacobs
    package tjacobs.jpeg;
    import java.awt.Image;
    import java.awt.image.BufferedImage;
    import java.awt.image.RenderedImage;
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import javax.imageio.ImageIO;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGEncodeParam;
    import com.sun.image.codec.jpeg.JPEGImageDecoder;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    * Utilities for saving JPEGs and GIFs
    public class JPEGUtils {
         private JPEGUtils() {
              super();
         public static void saveJPEG(BufferedImage thumbImage, File file, double compression) throws IOException {
              BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(file));
              saveJPEG(thumbImage, out, compression);
              out.flush();
              out.close();
         public static void saveJPEG(BufferedImage thumbImage, OutputStream out, double compression) throws IOException {
              JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
              JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbImage);
              compression = Math.max(0, Math.min(compression, 100));
              param.setQuality((float)compression / 100.0f, false);
              encoder.setJPEGEncodeParam(param);
              encoder.encode(thumbImage);
         public static BufferedImage getJPEG(InputStream in) throws IOException {
              try {
                   JPEGImageDecoder decode = JPEGCodec.createJPEGDecoder(in);
                   BufferedImage im = decode.decodeAsBufferedImage();
                   return im;
              } finally {
                   in.close();
         public static BufferedImage getJPEG(File f) throws IOException {
              InputStream in = new BufferedInputStream(new FileInputStream(f));
              return getJPEG(in);
         public static void saveGif(RenderedImage image, File f) throws IOException {
              saveGif(image, new FileOutputStream(f));
         public static void saveGif(RenderedImage image, OutputStream out) throws IOException {
    //          Last time I checked, the J2SE 1.4.2 shipped with readers for gif, jpeg and png, but writers only for jpeg and png. If you haven't downloaded the whole JAI, and you want a writer for gif (as well as readers and writers for several other formats) download:
    //          http://java.sun.com/products/java-media/jai/downloads/download-iio.html
              ImageIO.write(image, "gif", out);
         public static void main(String[] args) {
              // TODO Auto-generated method stub
    }

  • How to add a ChartOfAccounts object into the database.

    how to add a ChartOfAccounts object into the database. please shows sample code
    thanks

    Dim CoA As SAPbobsCOM.ChartOfAccounts
                CoA = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oChartOfAccounts)
                CoA.Code = 11223344
                CoA.ExternalCode = "a1234"
                CoA.ForeignName = "f Test Account"
                CoA.Name = "Test Account"
                CoA.AccountType = SAPbobsCOM.BoAccountTypes.at_Other
                CoA.ActiveAccount = SAPbobsCOM.BoYesNoEnum.tYES
                CoA.FatherAccountKey = 100001
                If CoA.Add <> 0 Then
                    MessageBox.Show(oCompany.GetLastErrorDescription)
                Else
                    MessageBox.Show("Added Account")
                End If
    Remember the father account key must be a valid account number in the company where you are trying to add the new account.  (The G/L Account code seen in the SBO client)

  • How to pass a locale object into another function?

    Greetings,
    i like to pass a locale object into another function. These are my code below
    import java.util.*;
    public class Locales{
         public static void main(String[] args){
              Locale locale= new Locale("EN", "US");
              convert(locale);
    public void convert(Locale convert)
         String language = convert.getDisplayLanguage();
         System.out.println(language);          
    }I got this error:
    Locales.java:6: non-static method convert(java.util.Locale) cannot be referenced from a static content
                    convert(locale);
                    ^How do i correct it?
    Thanks

    Did you bother to do a search?
    Did you bother to read any of the material that the search would have linked you to?
    If you had then you would be able to understand where you are going wrong and how to fix it yourself. Instead of being spoonfed by us.

  • How to get customer-specific objects into PCUI ?

    Hello,
    we want to get an Z-table as tab page of the business partner-application into PCUI. It should 'only' be possible to create new entries - today there is no need to modify or delete records.
    Does there exist something like a "cookbook" on this task or has anyone of you experience how to get customer-specific objects (without using EEWB) into PCUI ?
    Thanks in advance
    Martin

    Option 1:
    If you are good in ABAP.
    You can add new tab in which create a new Field group. Assign it to a model access clas in which handle the table update.You can get the details in PCUI cookbook itsel.
    Option 2:
    If you are good at java
    Develop an FM to update the table.
    Call the FM from webdynpro
    Include this webdynpro as HTML viewer in PCUI.
    Regards,
    Abdul Raheem S

  • How do u pass an object into a method

    I want to create a method getData that takes an object of type Helper and returns an object of the same type.
    how do u pass objects into a method and how do u get objects as returns im a bit confused

    That will just allow you to pass a parameter. If you want to return a helper object
    Helper paramHelper = new Helper();
    Helper someHelper = callMethod(paramHelper);
    public Helper callMethod(Helper hobj) {
        //<some code>
        Helper retHelper = new Helper();
        //<blah, blah>
        return retHelper;

  • How do I convert an Object into an Array?

    If I have an instance of type object that I know is really a DataGrid row that was cast into an object when passed to a function, how can I cast that Object to an array, such that each index of this array would correspond to the information in a given column of the row?

    @Sathyamoorthi
    Can you please explain what this function does? Essentially, what should be contained in the String?
    I printed out the string and it seems like I am getting a random row in the Object, as opposed to first or last. Why is that?
    UPDATE: I printed out the value of dataGrid0.columns[5].dataField but it just turned out to be the id of the column.

  • How to reimport relational table objects into RPD physical layer...

    I am new to OBIEE. I am not sure how to reimport relational database tables into physical layer whenever the base database table structure changes.
    How do I configure the ODBC or OCI 10G/11G connections on my computer so I can reimport objects into RPD on remote server.
    I would appreciate it if you can give step by step instructions
    Thanks in advance.

    Hello -
    You can re-import a table to the Physical Layer the exact same way that you would import the table for the first time:
    1) Click File > Import > From Database...
    2) Select your data source connections
    3) Choose your table you wish to reimport
    The system will warn you that you will overwrite the existing table and may lose information. The information you would lose is any discrepencies in the physical layer that are no longer existing in the actual database table. However, logical columns will NOT be overwritten.
    Alternately, if it is a minor change to the table (say a column name change, or one additional column added), you can also manually add the column
    1) Right Click on the already imported table in the presentation layer and select New Object > Physical Column...
    2) Name the column and provide the proper data type
    The column now exists in the physical layer and will be properly associated with the new column in the database, assuming the same column name was attributed. You WILL have to drag this new column forward to the logical layer and presentation layer, as this will not be automatically done.
    I hope this answers your question. If you found this helpful, please assign points!
    Regards,
    Jason

  • How to blur two objects in one scene in CS4

    I'm going a bit crazy over this.  I tried coping the video track, into track 5 and put a matte track in track 6.  I got this to work once, but when I view it again, the two blurred out objects are no longer blurred.
    I had followed this:
    http://www.wrigleyvideo.com/videotutorial/tutdes_ppro2_smoothface.htm
    But cracked up the blur a ton more.
    Is there another way to blur out two objects in a video?  I need something that will STAY.  Thanks!

    The way effects are stacked is also important.
    First Fast Blur then Track Matte.

  • How to turn a black object into white on an image?

    Hi,
    on a picture. i can turn a blue object into yellow, green or any other color. and vice versa.
    To do that i know 5 different ways, or combination of those methods.
    1- Hue/Saturation
    2- Color Balance
    3- Selective Color
    4- Replece Color (Similar to Hue/Saturation)
    5- select the area, create a new layer, paint the selected area on new layer, blend the new layer with "linear burn".
    but when it comes to black, i can't change the black to another color with any of the ways above. So i was wondering if it is possible to turn a black object into white without killing the texture. Or cleaning the object from colors, making it colorless.
    best way i know so far is playing with "exposure" settings. but this time the objcet on the image is becoming blure and loosing its texture.
    Here is the object i m trying to make white (or colorless). Do you know any way to do it?
    i need to make that shoe as white/colorless as this one below.
    Thanks!

    Thanks for your help. But i wish it was that easy
    i can simply select the whole shoe and do ctrl+i (short cut to invert) to invert the dark colors to white. But while it turns the dark colors into white it also turns white parts into black. which i don't want to.
    it doesnt have to be plain white, i need it to be as white as possible then i can use it as a template to try different colors on it. (like the second photo i sent)
    If i do it with "invert" the when i paint it the shoe doesnt look real, its because with "invert" option, light parts becomming shadow, and shaddows becoming light.

  • How can I convert table object into table record format?

    I need to write a store procedure to convert table object into table record. The stored procedure will have a table object IN and then pass the data into another stored procedure with a table record IN. Data passed in may contain more than one record in the table object. Is there any example I can take a look? Thanks.

    I'm afraid it's a bit labourious but here's an example.
    I think it's a good idea to work with SQL objects rather than PL/SQL nested tables.
    SQL> CREATE OR REPLACE TYPE emp_t AS OBJECT
      2      (eno NUMBER(4)
      3      , ename  VARCHAR2(10)
      4      , job VARCHAR2(9)
      5      , mgr  NUMBER(4)
      6      , hiredate  DATE
      7      , sal  NUMBER(7,2)
      8      , comm  NUMBER(7,2)
      9      , deptno  NUMBER(2));
    10  /
    Type created.
    SQL> CREATE OR REPLACE TYPE staff_nt AS TABLE OF emp_t
      2  /
    Type created.
    SQL> Now we've got some Types let's use them. I've only implemented this as one public procedure but you can see the principles in action.
    SQL> CREATE OR REPLACE PACKAGE emp_utils AS
      2      TYPE EmpCurTyp IS REF CURSOR RETURN emp%ROWTYPE;
      3      PROCEDURE pop_emp (p_emps in staff_nt);
      4  END  emp_utils;
      5  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY emp_utils AS
      2      FUNCTION emp_obj_to_rows (p_emps IN staff_nt) RETURN EmpCurTyp IS
      3          rc EmpCurTyp;
      4      BEGIN
      5          OPEN rc FOR SELECT * FROM TABLE( CAST ( p_emps AS staff_nt ));
      6          RETURN rc;
      7      END  emp_obj_to_rows;
      8      PROCEDURE pop_emp (p_emps in staff_nt) is
      9          e_rec emp%ROWTYPE;
    10          l_emps EmpCurTyp;
    11      BEGIN
    12          l_emps := emp_obj_to_rows(p_emps);
    13          FETCH l_emps INTO e_rec;
    14          LOOP
    15              EXIT WHEN l_emps%NOTFOUND;
    16              INSERT INTO emp VALUES e_rec;
    17              FETCH l_emps INTO e_rec;
    18          END LOOP;
    19          CLOSE l_emps;
    20      END pop_emp;   
    21  END;
    22  /
    Package body created.
    SQL>Looks good. Let's see it in action...
    SQL> DECLARE
      2      newbies staff_nt :=  staff_nt();
      3  BEGIN
      4      newbies.extend(2);
      5      newbies(1) := emp_t(7777, 'APC', 'CODER', 7902, sysdate, 1700, null, 40);
      6      newbies(2) := emp_t(7778, 'J RANDOM', 'HACKER', 7902, sysdate, 1800, null, 40);
      7      emp_utils.pop_emp(newbies);
      8  END;
      9  /
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM emp WHERE deptno = 40
      2  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM
        DEPTNO
          7777 APC        CODER           7902 17-NOV-05       1700
            40
          7778 J RANDOM   HACKER          7902 17-NOV-05       1800
            40
    SQL>     Cheers, APC

  • How to call a file object into LinkedList?

    Hey all,
    I know LinkedList uses a String to be identified like: List<String> list = new LinkedList<String>;I was wondering if there was a way to convert a file object so that the LinkedList can use the file as a basis of sorting? I tried link.set(inputFile), but that doesn't work, as usual I tried List(file) list = new LinkedList(file); but that doesn't work either. I would use an array, but I heard people say not to use array or container when working with a large database?
    Right now, my only code to sort looks like:
         public boolean isAscending(File iFile) throws IOException
              List list = new LinkedList();
              ListIterator li = list.listIterator();
              if(li.hasNext() && iFile != null){
                   return true;
               else
                    return false;
         }}I know it's incorrect, but I need to call a .txt file into LinkedList, but as I said before, the methods that I know how to work with doesn't work with it?

    Sorry guys, I made a big mistake!
    Sorry for wasting your time, I got it fixed by myself!

  • OSX 10.9.5  Edge Animate v. 2014 1.1 How do I put an object into a div in this version?

    The lesson says to go to Modify>group element into div, but this version just says Modify>Group Elements, there is no mention of div. 

    You were mistaken. It simply is  collection of data about your computer. It is not a diagnostic tool nor can it provide advice on how to fix a problem.
    Fans are hardware, and the only way to fix hardware is to take the computer to the Apple shop. As for slowdowns you will need to provide more specific information about what that entails. The report you posted shows nothing unusual about your computer. Your slowdown may just be due entirely to the installation of the Intego AV software which you can safely uninstall. You don't really need it. Your computer should run faster without it.
    Sorry, I spoke too soon. You have CleanMyMac installed. Get rid of it.

  • How to pass the java object into the spring controller

    Hi Friends
    When I hit the url at the first time my call goes to the spring controller and sets the userDetails objects in the modelAndView.addObject("userDetails", userDetails.getUserDetails()) and returns the userDetails.html page. if I click any link in the same page i want to pass same (userDetails) object thru javascript or jquery and calls the another(controller) method and returns the same (userDetails.html) page.
    It means how can i pass the java object thru javascript or jquery and calls the controller. if i get the same object in my controller i can avoid calling the db again. please help me out to resolve this issue. i am tired of fixing this issue.
    Regards
    Sherin Pooja

    If you want to avoid calling the database again then cache the data.
    However before you do that make sure that calling the database, in the context of YOUR system, is going to be an actual problem.
    For example there is absolutely no point in caching a  User object when only one user an hour is actually using the system.

Maybe you are looking for