"Blurring an image" in FCP.

Hello,
In a recent short movie I shot, an image of a commercial product appears on our set. I need to "blur" this image out of the video for copyright purposes. Is there an easy way to this using FCP, e.g., Motion or LiveType, for instance?
Gary

Duplicate the clip you need to blur a part of and place it directly above the original in your timeline. Then add a garbage matte to it in FCP... blur the lower clip with a gaussian blur or other blur, and then use the garbage matte to cut in only what you want to be seen with the blur... if the shot moves, you can move the points of the garbage matte to move with the shot.
Jerry

Similar Messages

  • How do I change the blurred background image on the Select User Screen

    I have changed the desktop image on all of my users, as well as the screen savers.  However, when I logout of one user and the screen where you select another user comes up, there is an image on the background of this particular screen that I cannot figure out how to change.
    This is crucial because I do not want to see my crazy, abusive ex-wife every time I select a different user...even if it is a blurred image.
    This blurred out image does not appear anywhere else on any of the different user accounts as a background/desktop image.
    How do I change this background image?
    Please help.

    This seems to be a bug that goes away w/ 10.10.1
    Yosemite login screen possible bug
    "if I put my Mac in sleep mode, when I wake up it, the password request screen uses the default Yosemite wallpaper in blurred mode instead of the wallpaper I have chosen for my desktop."
    or maybe not:
    "And it still happens after the 10.10.1 update."
    This seems to work.
    "The only way I was able to fix this problem was to go Mission Control and close all extra desktops I was using except Desktop 1 (which you cannot delete if it is the last one). After deleting the extra desktops besides Desktop 1, I went into preferences and set my wallpaper. Once I complete both of these steps I returned to the login screen. The wallpaper I used for Desktop 1 was now my background for the login screen. Hope this helps."

  • Is there a way to edit each frame as an Image in FCP

    Hello Folks,
    Just wondering how can I edit each frame as an image in FCP pro... let's say my cam shoots @ 24fps and I import that to FCP, well how can I import these 24frames into a photo editing program such as PhotoShop so I edit each frame and color correct and stuff like that? Also how would I bring it back each frame to FCP?
    What is this process called? Frame editing? I'm not familiar with this because I was told it is duable, i know in Adobe Premier the frames export to a folder where you can edit each image in watever program you want and bring them back to adobe.
    So how can I do this in FCP?
    Appreciate your great help,
    Joey Dee

    just for clarity:
    whilst there is indeed a direct Export option, there is no direct Import option. For Export: use FCP's File > Export > Using Quicktime Conversion.. >> Image Sequence option
    For Import you can first use Quicktime Player's File > Open Image Sequence... option, and export it out to the codec of the original clip/sequence using the File > Export... option. After that you can then import that clip back into FCP.
    its worth noting that this is not "roundtripping", there is no invisible link between the exported frames and the master clip/sequence

  • Exporting image from FCP 16.9

    i am exporting still images from FCP and they are sqooshed , they look more like 4.3 aspect ratio. i know I converted them to 16.9 on the desktop with preview, but i can't reproduce that...any ideas, I don't want to get graphic converter, it's just a few shots.
    CB

    Open them in QT Player 7 then select Window>Show Movie Properties>Video Track.
    Change Scaled Size to the correct figures, deselect Preserve Aspect Ratio and hit return.

  • Change the amount of blur an image??

    Hi everyone,
    I'm trying to write an application to blur an image. I've created a set of five option buttons and clicking on each option button should make the image increasingly more blurred without making the image brighter or darker. The code that is executed whenteh user clicks on the first option button works fine - this one uses a three by three kernel. I thought that if I used a larger kernel for the next image it would make it more blurred?
    The problem is the second one makes the image much darker.. How can I solve this? Am I right in thinking that bigger kernels will change the level of blur in the image?
    float ninth = 1.0f/9.0f;
    float[] kernelNinth = { ninth,ninth, ninth,
                               ninth,ninth, ninth,
                               ninth,ninth, ninth,};
    float twentyFifth = 1.0f/25.0f;
      float[] kernelTwentyFifth = { twentyFifth,twentyFifth, twentyFifth,twentyFifth,twentyFifth,
                              twentyFifth,twentyFifth, twentyFifth,twentyFifth,twentyFifth,
                              twentyFifth,twentyFifth, twentyFifth,twentyFifth,twentyFifth,
                              twentyFifth,twentyFifth, twentyFifth,twentyFifth,twentyFifth,
                              twentyFifth,twentyFifth, twentyFifth,twentyFifth,twentyFifth,};
    public void itemStateChanged(ItemEvent e)           
      if (e.getSource()== optRate1)
         blur(kernelNinth);
      else if (e.getSource()== optRate2)
         int i;
         float total=0f;
         for(i =0; i<25; i++)
            total+=twentyFifth;
         System.out.println("i: "+i);
         System.out.println("twentyFifth: "+twentyFifth);
         System.out.println("total: "+total);
         blur(kernelTwentyFifth);
       }This is the output:
    i: 25
    twentyFifth: 0.039999995
    total: 1.0000001
    Thanks very much for your help!

    I'm sorry, but I can't help you with blurring images.
    But I would propose to change the program a bit:
    private float[] createPartKernel(int n){
    float f = 1.0f / (float)n;
    float[] kernelArray = new float[n * n];
    for(int i=0; i<kernelArray.length; i++){
      kernelArray[i] = f;
    return kernelArray;
    }That's all. Now you can try it with many more different kernels, without typing much.
    Good luck for your blurring.

  • Reveresing black and white still Photoshop image in FCP?

    is it possible to reverse the black and white of a still photoshop image within FCP? then remove the background apart from the letters?
    need to get a black and white company logo into FCP for use in the credits of this programme - due to a graphic designer being away i've had to scan the image off letterhead! very backwards and not ideal I know - but its a bit of a emergency so any pointer very much appreciated...

    Drag and drop your image from the viewer to the timeline, lets say in V2.
    Right click the logo clip>go to composite mode>select screen.
    That's it. You now have the white text with no black background and whatever is in V1 replaces the black.
    G.

  • Blur an image - it just draws a black box!!

    Hi,
    I'm trying to write a method to blur an image and draw it on a panel. It just draws a black box (at least its the right width and height though!)
    I'm not too familar with Graphics 2D so I've no idea what the problem is - I've looked at several examples and as far as I can see my code is the same..
    This is the main class:
    public void blur()
          currentImage = images[lsClips.getSelectedIndex()];
          int height=currentImage.getHeight(this);   //make new buffered image same width, height as original image
          int width=currentImage.getWidth(this);
          System.out.println("the width is"+width);
                                                       //convert original image to a buffered image
          BufferedImage srcBuffImg= new BufferedImage(width,height, BufferedImage.TYPE_INT_RGB);
          Graphics2D big = srcBuffImg.createGraphics();
          big.drawImage(srcBuffImg,0,0,processedImagePanel);
          processedImagePanel.setImage(srcBuffImg);
          processedImagePanel.repaint();
          processedImagePanel.revalidate();
    }processedImagePanel is a customised JPanel class that I created to display the image on. I think that the setImage() method works propperly - the buffered image is not null when I checked it in this method. This is the setImage() and paintComponent() methods of that class.
    public class ImagePanel extends JPanel
    private BufferedImage buffImg;
    float[] elements = { .1111f,.1111f, .1111f,
                          .1111f,.1111f, .1111f,
                          .1111f,.1111f, .1111f,};
      public void setImage(BufferedImage img)
        processing = true;
        this.buffImg = img;
        this.repaint();
        this.revalidate(); 
      protected void paintComponent(Graphics g)
        super.paintComponent(g); //paint background
        if(buffImg!=null )   //draws blurrred image
          System.out.println("DRAW Buffered img");
          Graphics2D g2 = (Graphics2D) g;
          int w = getSize().width;
          int h = getSize().height;
          int bw = buffImg.getWidth(this);
          int bh = buffImg.getHeight(this);
                        //create a buffered image for the processed image
         BufferedImage destBuffImg = new BufferedImage(bw,bh,BufferedImage.TYPE_INT_RGB);
         Kernel kernel = new Kernel(3,3,elements);
         ConvolveOp cop = new ConvolveOp(kernel,ConvolveOp.EDGE_NO_OP,null);
         cop.filter(buffImg,destBuffImg);
         g2.drawImage(buffImg,cop, 10,10);
    }I would be very grateful if anyone could give me any suggestions..

    BufferedImage srcBuffImg = new BufferedImage(width,height, BufferedImage.TYPE_INT_RGB);
    Graphics2D big = srcBuffImg.createGraphics();
    big.drawImage(srcBuffImg,0,0,processedImagePanel);
    processedImagePanel.setImage(srcBuffImg);
    processedImagePanel.repaint();
    processedImagePanel.revalidate();I think the bug is here: why do you paint the (empty) buffered image in itself? I guess, you wanted to paint the currentImage to the bufferedImage.

  • How to blur an image?

    Could someone please provide an example of the easiest way to blur an image. I have googled for it but I haven´t find any examples that made me more clear over how it works.
    What classes do I need, except the Image class?
    Thanks in advance!
    EDIT: I have found this method:
    public void blur() {
        float data[] = { 0.0f, -1.0f, -1.0f, 1.0f, 0.0f, 0.0f,
            0.0f, 0.0f, 0.0f };
        Kernel kernel = new Kernel(3, 3, data);
        ConvolveOp convolve = new ConvolveOp(kernel, ConvolveOp.EDGE_NO_OP,
            null);
        convolve.filter(biSrc, biDest);
        bi = biDest;
      }I have tested changing the data[] array values and the image is getting blurred. But what kind of values are these 9 elements?

    If you change the data[] array to something like this
    float[] data = {1/9f,1/9f,1/9f,
                    1/9f,1/9f,1/9f,
                    1/9f,1/9f,1/9f}; then you would have stumbled upon one of the easiest ways to blur an image. A convolution just basically takes the above array and "places" it on the image. In the above case I have a 3x3 "window" that is moved across the image. At every point the pixels are multiplied with the corresponding value in the window and then added together. The sum becomes the new value for the center pixel.
    So in the above case, I'm taking 1/9 of every pixel, summing them, and making the sum the center pixel. For a colored image this is done on all three channels (red, green, blue). The resulting image then has the property that every pixel has a little bit of its neighbors' colors. This achieves a blurring effect. Of course, there are more accurate (and still fast) ways to go about blurring, but a box-convolution where each array element is +1/size+ is probably the easiest.
    Now as far as convolutions go, you can manipulate the values in the window or the dimensions of window to achieve various effects (median filter, primitive edge detection, sharpening, embossing, ect..). In fact, convolutions are so important to image processing that most computers have built in hardware to speed up the calculations. The ConvolveOp in core java tries to utilize this acceleration, but has certain annoying limitations.
    [Here's a good source on blurring|http://www.jhlabs.com/ip/blurring.html]

  • URGENT. HOW TO IMPORT MP4 FULL HD IMAGES TO FCP TIMELINE

    HOW TO IMPORT MP4 FULL HD IMAGES TO FCP TIMELINE WITHOUT HAVING TO RENDER.

    Stop shouting.
    You can't use MPEG4 in Final Cut Pro without lots of hassle.
    They need to be converted to one of the editing codecs found in Final Cut Pro's Easy Setup menu.
    What is the source of your footage and which version of FCP are you using?
    What model Mac, with which version of Mac OS X?

  • Reflecting Images in FCP

    Is there a way to add a Reflection effect to a picture (still image) in FCP like there is in Keynote and Pages?
    Thanks

    I see how that works...thanks. Is there a way to make a softer reflection? I really like the one in Pages and Keynote. It adds a small gap between the image and the reflection. It also only shows less than the first 1/3 of the reflection as opposed to 100% of the reflection. Almost as if the image is sitting on a highly polished floor.
    Can that be done? I know I could screen capture the image with the effect straight out of Pages, but this will be very time consuming with nearly 100 photos....

  • How can I blur a image with two variables : degree and radius?

    how can I blur a image with two variables : degree and radius?
    a lot of thanks !

    What are the values of these variables supposed to represent?

  • Blurred print image

    Fix for blurred print image on HP photosmart 4780 using adobe reader 11.0.03 on iMac OS X 10.6.8?

    G.Hoffmann wrote:
    The OP uses Photoshop as RIP for large format prints…
    Is that what the OP's description means? 
    In my ignorance, I had imagined RIPs were magically sophisticated devices.    So any application that rasterizes an image can be considered a proper "RIP"?
    Yes I understand that RIP stands for Raster Image Processor/Processing, but I thought it needed to meet certain credentials to merit the acronym. 

  • Blur an image?

    How do I blur an image or part of a clip?

    use the text tool "pull focus" and delete the text so it is blank.
    So split the clip you want to blur on both sides to the correct places. Then highlight it, and go to the text tools. Drag "pull focus" on top of it. Delete any text there so it is blank.
    By using the dissolve transitions and other things, you can make the ends neater if you mess with it. Be creative and clever. You can make it work.

  • Images in FCP X 10.0.8 - blurry on full screen playback

    I'm trying to create a documentary of around 30 mins using both photos (Ken Burns effect) and video clips.  Settings are as follows:
    I have around about 580 photos all cropped in PS6 to 1700 x 900 px.  Won't be using many of them but have them imported just in case.  The video clips show beautifully on full screen preview, however, the photos are blurred and jagged.  When I tap the space bar and freeze the image, however, they preview just fine.  I have only created around 6 mins at this stage so I tried making a DVD of that portion and there was no problem with the photos showing sharply as they should.  This is rather discerting to say the least and I am a little hesitant to continue until I get some professional advice.  Is this a problem with something I have or have not done in cropping/resizing the images (they are all around about 5 mbs and many taken from CR2 files) or is this a problem with this version of FCP X 10.0.8?  Has anybody else experienced this problem?  And since the 6 mins rendered and created a final DVD without any problem should I just proceed as is?  Finally, I am using a MacBook Pro 15in - now 2 years old if that should make any difference.
    Thanking you,
    Mitaka27
    Tokyo

    Thank you so very, very much. Changing that preference solved the problem.  What a relief.
    Mitaka27

  • Importing photoshop images into fcp?

    I'm currently working on a project where i'm having to blend in images/photos (jpeg/tiff format) with the HD footage i'm editing with. Simple question really; do you recommend that I re-size the images in photoshop so that the image is the same dimensions as the footage in final cut? I know some blurring/loss of image quality will occur but that's not important at this stage.
    For instance my settings in fcp are HD 1440x1080, 16:9 aspect ratio. Just so I don't get left with big black borders around my photos once they're in the sequence is it best that I doctor them in photoshop and size them to the exact fcp frame that i'm working with?
    I assume that if the image is too big for the frame in fcp it will crop the image so it fits nicely?
    Thanks for your help on this,
    Alex

    Your assumptions are all misguided; you're in control of everything FCP will attempt to do to your still images. However, you need to understand how to wrest that control from the defaults and that's a few dozen pages in the manuals.
    Bringing layered Photoshop documents into FCP is different than importing still image files. Another section in the manual. There are entire websites dedicated to this topic, too, and you're going to to need to experiement on the numerous techniques suggested.
    At its basic level, you want your images to have pixel dimensions that will support the maximum zoom you will want to use. If all of your images are simple full frames, create your still in the exact pixel dimensions of your sequence. Yes, you must understand the difference between square and rectangular pixels. Manual again.
    If you intend to do zooms or other complex moves, you will want to size your images about 200% larger than your HD sequence.
    Still images have no fields, only sequences do.
    Stick around for a few more days and you'll get several additional posts.
    bogiesan

Maybe you are looking for

  • HR-Training and Event Management -Standard business Objects

    Hi      Can any body let me know,what are all the Standard 1.Data Dource. 2.Cube. 3.Transformation... 4.Infopackage 5.DTP available for HR-Training and Event Management Module. Thanks in Advance. Regards, MRC.

  • How to retrieve data from a REF CURSOR using OCI 8.0?

    I found an example in Oracle docs (shown below) that discusses how to bind a REF CURSOR for later data retrieval, but it does not explain actually how to do the later data retrieval. I hope someone can explain it to me. Thanks The OCI provides the ab

  • Create accessible pdf from html pages dynamically

    Hello, I am trying to create a 508 compliant Pdf from a simple HTML page using the HTML to Pdf feature in Livecycle ES4 server. I was able to configure the service to generate tabbed Pdf, but the created Pdf has multiple accessibility issues. Some of

  • Entry Variable not available in Free char in Query?

    Hi I have to remove one of the entry variable in a query, its costing date and is mandatory variable; but it is not visible in Free characteristic to remove it. Its one of the factory reports. Any idea how to remove it? Thanks in advance Ishi

  • Why Cant we downgrade IOS6 to IOS5.1.1

    Why Cant we downgrade IOS6 to IOS5.1.1 ?