Question on how to blur an image

I can't remember how to take a picture and use a tool (such as the eliptical tool) - make a circle around my image and then blur the edges of the image with a transparent background. Can someone please help me....thanks.

It's here:
<br />
<br />
<a href="http://www.pixentral.com/show.php?picture=1U8AbJidjQ0Weddpu4wqiVuammLRn0" /></a>
<img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1U8AbJidjQ0Weddpu4wqiVuammLRn0_thumb.jpg" border="0" />
<br />
<br />Rob

Similar Messages

  • 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 question..how to display 2D image/text on Canvas(Java3D)?

    I am developing a first-person action game and want to add a box which show the value(eg,what weapon you are carrying,any value) on the canvas like CS,but I dont know how to set it up.I want to know how to create it?

    Hey,
    I'm new to java3d, but I'm pretty sure that you can draw 2D strings/images on top of a Canvas3D. Just make a custom Canvas3D class, then in that class implement postRender(), and in there you can do all your 2D displaying.
    For example, this is what I did to display some information and graphics above the Canvas3D in my program:
    public class CustomCanvas3D extends Canvas3D
    public CustomCanvas3D(GraphicsConfiguration gcIn)
    super(gcIn);
    public void postRender()
    J3DGraphics2D g = getGraphics2D();
    Image crosshair = this.getToolkit().createImage("crosshair.png");
    MediaTracker mt = new MediaTracker(this);
    mt.addImage(crosshair, 0);
    try
    mt.waitForAll();
    catch (InterruptedException e)
    e.printStackTrace(System.out);
    g.drawImage(crosshair, 200, 200, this);
    g.setColor(Color.orange);
    g.drawString(player.getVitalInformation(), 100, 100);
    g.flush(true);
    Hope that helped,
    James Attenborough

  • How to blur an image in my video?

    Hello,
    I would like to blur someone's face in a video clip and I'm not sure the steps to do this. Could someone lead me in the right direction?
    Thanks,
    Jordan Simkins

    http://proapptips.com/tips/article.php?story=20050312040230626&query=BLURRING

  • How do I remove images from aperture?

    Totally new to apple and aperture so I apologise if this seems like a somewhat noob question but how do I remove images from aperture (using the latest version, 3.4.1)? Coming from a PC and using lightroom I'm used to being able to remove images in two ways:
    - removing the image from the "library", so that it no longer shows up in the program at all but is still on your hard drive (when I say removing it from the program entirely, I mean entirely, i.e. not sitting in a trash can or some other place where it's still taking up memory)
    - deleting the original image off the hard drive
    Is it possible to do either of these things in aperture, on both just a single image or a selection of multiple images, and if so how? I've tried googling this already and am getting a bunch of mixed solutions, none of which have really worked so far, so any answers would be appreciated. Thanks!

    The answer partially depends on whether you have a managed or referenced library. Since you're totally new to Aperture, I'm assuming you have a managed library since that's the default.
    FYI: Managed means Aperture handles image files and places them inside the library file. Referenced means you manage the image files and Aperture only points to (references) them.
    For a managed library, select an image you want to delete. Type command-delete. (That's the reverse delete key next to the "=" key). (You can also right-click an image and choose Delete Version) That will remove the images from their Project and place in the Aperture Trash. They're still taking up space in the Trash. If you really want them gone for good, right-click the Trash in the library pane and select Empty Trash. Poof.
    For a reference library, I forgot the exact details since I don't use this type of library, but you'll be asked (or can check a box) to delete the original file from the disk.

  • How to disable message images in Mail app for all but contacts?

    I use the Mail app for OS X Mavericks and have been inundated with spam lately. I understand that spam email campaigns can confirm that you have opened their mail (and subsequently continue to send you mail) by image tracking so I would like to disable images from showing for all except my contacts. I don't recall if it was with Mail or another email client I previously used, but I vaguely remember message images not showing by default and requiring you to click a button at the top of the message in order to show the images within it. If possible, I would like to be able to do this for non-contacts.
    So my question is: how can I disable images from showing, by default, in messages from non-contacts within the Mail app?
    If there is no way to do this, can someone suggest an alternative email client for Mac OS that does allow this? I am willing to change if this feature does not exist within the Mail app.
    Thanks for your time.

    Personally, I've never heard of spammers tracking by a contact's image. I think you might be confusing this with the images in the message.
    Spammers can do two things to track you.
    1) Send an email with a read receipt. Mail doesn't support read receipts
    2) Send an email with an embedded image (sometimes called a bug or beacon). When the email is opened, the email software loads the image from the remote server by sending it an HTTP request.
    If a message matches the junk mail criteria, then a bar will appear near the top of the message. External images in the message will automatically be disabled, so that spam authors won’t be able to track if you’ve opened the message. To load the images, click the “Load Images” button in the bar, or to mark the message as not junk, select “Not Junk.”
    Mail > Preferences > Viewing >Uncheck Display remote images in HTML messages.
    Enable Junk filtering in Mail Preferences. Check "sender in in contacts, sender in in previous recipients**, message is addressed using full name.
    Use SpamSieve, third party product to filter spam, http://c-command.com/spamsieve/
    Keep contacts in your Address Book.
    Mark messages as junk to help train the junk filter.
    Don't open a message you think is spam. You should be able to see enough of a message in the preview to know if it's spam.
    ** Open Previous Recipients under Window in the Menu bar. Remove any addresses from spammers.

  • How do you add images?

    this is a dumb question but how do you add images in java? also creating a background image? thanks

    Add images in what way, together like image A plus image B? Or to a user interface?
    If to a user interface, see the swing tutorial: http://java.sun.com/docs/books/tutorial/uiswing/misc/icon.html

  • 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."

  • Truly dumb question. How do I get PS to actually complete a command, eg straighten an horizon, and finalise the change. Even doing a "save as" with a new file name and reloading brings the image back, straightened, but with the skewed back ground frame st

    Truly dumb question. How do I get PS to actually complete a command, eg straighten an horizon, and finalise the change. Even doing a "save as" with a new file name and reloading brings the image back, straightened, but with the skewed back ground frame still there. Is there a "apply change" or similiar command that I simply cannot see.

    brings the image back, straightened, but with the skewed back ground frame
    PSE did what you told it to do. Choose the Straighten and crop edges or fill edges options when you use the straighten tool if you want it to do more than just straighten the contents of the image. Many people prefer the plain straighten because they'd rather crop themselves than let PSE do it.

  • 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?

  • How to blur (non-moving) objects in video

    Hi - I've been trying for 2 hours to just blur something out of a video to no avail, using rectangle mask, then 'gaussient' filter. All I see on the screen, even after increasing the "amount" of blur to maximum setting, is a red rectangle. The blur effect is barely noticeable. I can't see what I'm doing wrong? Additional questions:
    1) How do I get the layer to "stick?" Just save or export the project as an mp4?
    2) How do set the start and stop of the filter? (I can change the start with the 'handle bars' on the purple bar, but not the end).
    OS/X 10.9.5 (although updating to Yosemite shortly!).
    Thank you for any help you can provide.
    Karri

    karrifromab wrote:
    Hi - I've been trying for 2 hours to just blur something out of a video to no avail, using rectangle mask, then 'gaussient' filter. All I see on the screen, even after increasing the "amount" of blur to maximum setting, is a red rectangle. The blur effect is barely noticeable. I can't see what I'm doing wrong?
    If I'm understanding what you're looking to do, to blur a portion of footage:
    Add your footage
    Duplicate it
    Add your shape mask to the duplicate footage
    Add the blur filter to the duplicate footage*
    *Be sure to add the filter to the footage and not the mask, otherwise you'll be blurring the shape mask (making it appear feathered, instead of blurring the footage).
    Your Layers List should look like this:
         Group
              Footage copy
                   Rectangle mask
                   Gaussian Blur
              Footage
    Not this:
         Group
              Footage copy
                   Rectangle mask
                        Gaussian Blur
              Footage
    Additional questions:
    1) How do I get the layer to "stick?" Just save or export the project as an mp4?
    2) How do set the start and stop of the filter? (I can change the start with the 'handle bars' on the purple bar, but not the end).
    1) I'm not sure I follow what you're looking for here. Saving the project will allow you to open it in the future to modify or export it again. Once your project is finished, you can export it as a movie or image sequence or directly to a web service. It all depends on your delivery needs.
    2) You've got it right, just like how you change the start, you can do that with the end.
    It sounds like either you don't have your entire project visible so you're not seeing the end of the filter. Try zooming out of the Timeline. (lower right corner is a slider, or click the Timeline area and hit shift+z).
    Or the filter is applied to an object that is bigger than your project. Set the playhead to where you want the filter to end and with it selected, hit o. This sets an outpoint for the selected object.  You can also adjust the timing for any object in the Properties tab in the Inspector. Twirl open the Timing brick and you'll see scrubbers for In, Out and Duration.
    Hope that gets you going.

  • How do I add image upload to web app edit template?

    How do I add image upload to web app edit template. When creating fields I am selecting image from the field type. But the only way to upload and image is when I create the web app item within the admin. The option to upload an image is not available when the user submit web form opens.
    Wont send any of these questions through this email anymore but really needed assistance.
    Thanks,
    Gordon

    On the Details tab of the Web App setup, under Web App Item Options; have you ticked "Allow File Upload" and specified a Default Upload Folder?

  • How to upload a image or flash file as blob object in a table.

    How to upload a image or flash file as blob object in a table.
    What are all the possible ways we can do it.

    Searching the forum (or google) would be my first choice, as this question pops up every now and then.
    Next without knowledge of your environment (jdev version and technology stack) it's hard to give a profound answer.
    All I can say is that it's possible.
    Timo

  • How to get the image stored in archieve link as an attachment in work item.

    Hi All,
    through transaction OAWD we are storing scanned images.
    Once this transaction is executed a workitem appears in the inbox of the initiator with the scanned invoice as attachment.
    When the user executes the work item FV60 screen is displayed where the user enters the data based on the scanned invoice attachment.
    After the user Parks the document the custom workflow triggers and a workitem appears in the inbox of an approver.
    Our requirement is that the scanned image should also appear as the attachment.
    Can you please suggest how to get the image stored in archieve link as an attachment in work item.
    Regards
    Shraddha

    Hi Martin,
    with every parked document a scanned image is linked.
    I need to create a link under objects and attachments in the work item, such that when the user clicks that link the image is displayed.
    At present the following functionality is available.
    The BO used is FIPP
    Objects and attachments:
    parkeddocument:AK0108500001252008.(via FIPP binding with WIOBJECT_ID)
    On clicking the link below objects and attachments: the parked document AK0108500001252008 opens in display mode.
    Now we want to have 2 links:
    parkeddocument:AK0108500001252008.
    image.
    When we click on the link image then the scanned invoice linked to the document should get opened.
    I am able to get the image id of the the image through  SAP_WAPI_GET__OBJECTS,
    export parameter leading_object provides the detail.
    But I am not able to figure out how to use it in my workflow to display it as an attachment.
    Hope this will give a better understanding of my question.
    can you please suggest as to how I should proceed with it.

  • How to get my images always order by file name, and not by time of captur, in all the folders in the library?

    How to get my images always order by arquive name, and not by time of captur, in all the folders in the library?
    Sorry for the poor english, but im portugues.
    In the library we can change the order of classification of image by, time of capture, name of file etc... I'm wondering if its possible define to be always by the name of file.
    It ´s possible?
    And i have other question, in print label we have an option to auto rotate to feet in page to have the image using the maximum area in the page (auto rotate, zoom etc), its possible to change the orientation of the rotation to be always in  the other direction?

    The Muvos are USB Mass Storage devices and do not have the ability to display track information based upon ID3 tags.
    The Zens all read and display track info based upon ID3 tag information that is either gathered from an online source or entered by the end-user.
    If you want the track information displayed instead of the ID3 tag information, you could edit the ID3 tags and rename the title to whatever you have as the file name. Not sure why your file names would differ so much from the ID3 tag info though, almost all of my content has the same name for the filename as it does on the ID3 tag title.

Maybe you are looking for

  • New in ABAP

    Hello Everybody what is the difference between pack and floating point datatypes, i ABAP Objects book, there is mentioned that if you are concious about accuracy then use pack datatype, otherwise use floating point. i write a program data p1 type p.

  • Linking MacBook Pro to monitor

    Hi, I have just purchased a Dell U2410 to connect to my MacBook Pro. Please can anyone advise the best connector to buy and whether there's anything I need to know to set it up.  Would like to setup the laptop screen as a second screen if possible. N

  • Trouble starting ipod (very low battery message) and loop

    Hello. I am having troble to start my ipod classic 5 generation. The message "please wait very low battery" (with an ipod with sad face) appears but the weird thing is that i just used it yesterday and i left it fully charged...but well. Then i try t

  • 60i vs. 30p

    I feel like I've been getting some inconsistent info on which to shoot for my specific camera from searches on the web, so I thought someone here would have some better answers. Now some of you will jump on that first sentence and say "Well it depend

  • Display graphics in sapscript

    Hi All, I am not able to display graphics in sapscript of 4.6b system. Please clarify. Regards...