Want to capture my lips as drawing image in iPhone

Want to capture my both the lips as scanned image in iPhone. I want to get "Technical Howknow" about capturing lips touch motion. Thanks in Advance

Any phone that generates a hopspot will work, as long as you have a plan that supports tethering.  Doesnt need to be an i phone. 

Similar Messages

  • Draw image using paint() only once.

    I am having performance issues with my application. It is creates a graph like data display. The display is static. However each time paint is called the image is re-rendered. I want it only rendered once to improve performance, I tried to do this using the following code:
    public void paint(Graphics g){
              if (alreadyRun) return;
              //super.paint(g);
              alreadyRun = true;
    // draw graphics code
    }Unfortunately the required image appears for a moment then disappears. Is there any way to render the image only once? Also, are there any other performance improving measures I can take? I was thinking of rendering only the part of the image that appears on screen (my graphics display is usually bigger than the actual screen size)

    The common way to deal with performance like this is to draw the graph (or whatever) onto a BufferedImage then have the paint (or paintComponent in Swing) simply draw the image. The single draw image is quite fast and keeps the pixel values persistant across paints. If you already have a single image as the thread title hints, the paint shouldn't create much of a performance hit. The reason you are seeing your image disappear is that any time a window is resized, repacked, moved, covered up, or a multitude of other reasons, it calls paint again, so even with static data, there will be times the paint method is called again, causing your drawing to disappear.

  • Drawing Images. Making them Durable?

    Im trying to create an application that draws images to the screen. So for example, it draws an image (call it image x) where the user left clicks the mouse. It draws fine. Then when the user clicks at a new spot, the first image x is erased when the next is placed on the screen. This isn't what I want, I want all previous images from clicking to say. From searching, it seems my problem is that drawn images are not durable. Other forum posts didn't help me understand the solution to the problem so any help would be wonderful.
    Edited by: goyanks135 on May 12, 2009 6:13 PM

    Thanks for the quick reply, that seems to work best for this application. Another thing, is there any way to generate a BufferedImage that represents the panel? Currently I am using:
    <BufferedImage> = robot.createScreenCapture(<Rectangle>);
    to do so, but would not depending on where the window is on the screen. I couldn't figure out how to determine the windows location. Is there a method to create the BufferedImage or obtain the window's coordinates?
    edit: I was looking at the getLocation() and getSize() methods of the component class. Seems like they should work if I use
    <BufferedImage> = robot.createScreenCapture(new Rectangle (getLocation(), getSize());
    I'm going to bed right now and didn't get it to work. Seems like it should.
    Edited by: goyanks135 on May 12, 2009 7:01 PM

  • Drawing image Urgent!

    hai Guys!
    is it possible to draw image in xor mode using drawregion or drawimage if yes then how it can be done!

    hi frens..
    Is there way of drawing an image on Frame
    without erasing previous image. Each time the
    repaint() is called for drawing new image on frame
    using Graphics object, repaint() just clears the
    previous images , but i want previous image to be
    sustained .
    ImageIcon WhiteIcon = new ImageIcon("White.GIF");
    JL = new JLabel(null ,WhiteIcon, 0 );
    f.add(JL);Hope this will do.

  • How can I draw image in a vbean?

    How can I draw image in a vbean?
    this is my code :
    import java.awt.BorderLayout;
    import java.awt.Image;
    import java.awt.Graphics;
    import java.net.MalformedURLException;
    import java.net.URL;
    import com.sun.jimi.core.Jimi;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.VBean;
    public class PrintEmailLogo extends VBean {
         URL url;
         Image img;
         boolean ImageLoaded = false;
         public void paint(Graphics g) {
              if (ImageLoaded) {
                   System.out.println("yes~~~");
                   g.drawImage(img, 0, 0, null);
              } else
                   System.out.println("no~~~");
         public boolean imageUpdate(Image img, int infoflags, int x, int y, int w,
                   int h) {
              if (infoflags == ALLBITS) {
                   System.out.println("yes");
                   ImageLoaded = true;
                   repaint();
                   return false;
              } else
                   return true;
         public void init(IHandler arg0) {
              super.init(arg0);
              try {
                   url = new URL("file:print/77G.gif");
                   img = Jimi.getImage(url);
                   Image offScreenImage = createImage(size().width, size().height);
                   Graphics offScreenGC = offScreenImage.getGraphics();
                   System.out.println(offScreenGC.drawImage(img, 0, 0, this));
              } catch (MalformedURLException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    but when I run it in forms
    when it run Graphics offScreenGC = offScreenImage.getGraphics();
    It throw a exception:
    java.lang.NullPointerException     at com.avicit.aepcs.calendar.PrintEmailLogo.init(PrintEmailLogo.java:72)     at oracle.forms.handler.UICommon.instantiate(Unknown Source)     at oracle.forms.handler.UICommon.onCreate(Unknown Source)     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)     at oracle.forms.engine.Runform.processMessage(Unknown Source)     at oracle.forms.engine.Runform.processSet(Unknown Source)     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)     at oracle.forms.engine.Runform.onMessage(Unknown Source)     at oracle.forms.engine.Runform.processEventEnd(Unknown Source)     at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)     at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)     at java.awt.Component.dispatchEventImpl(Unknown Source)     at java.awt.Container.dispatchEventImpl(Unknown Source)     at java.awt.Component.dispatchEvent(Unknown Source)     at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)     at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)     at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)     at java.awt.Container.dispatchEventImpl(Unknown Source)     at java.awt.Component.dispatchEvent(Unknown Source)     at java.awt.EventQueue.dispatchEvent(Unknown Source)     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)     at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)     at java.awt.EventDispatchThread.pumpEvents(Unknown Source)     at java.awt.EventDispatchThread.run(Unknown Source)
    I change it to:
    import java.awt.BorderLayout;
    import java.awt.Image;
    import java.awt.Graphics;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.swing.JFrame;
    import com.sun.jimi.core.Jimi;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.VBean;
    public class PrintEmailLogo extends VBean {
         URL url;
         Image img;
         public void paint(Graphics g) {
              try {
                   url = new URL("file:print/77G.gif");
                   img = Jimi.getImage(url);
                   g.drawImage(img, 0, 0, this));
              } catch (MalformedURLException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public void init(IHandler arg0) {
              super.init(arg0);
    But it display nothing.
    It isn't paint continuous.
    what's wrong in my vbean?
    please help me.

    The following code works fine for me:
    package oracle.forms.fd;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.CustomEvent;
    import oracle.forms.ui.VBean;
    public class test extends VBean {
      private URL url;
      private URL m_codeBase; 
      private Image img;
    public void paint(Graphics g) {
      // draw the image
      g.drawImage(img, 0, 0, this);
    public void init(IHandler arg0) {
       super.init(arg0);
       // load image file
       img = loadImage("file:///c:/coyote.jpg");   
    public test()
        super();
       *  Load an image from JAR file, Client machine or Internet URL  *
      private Image loadImage(String imageName)
        URL imageURL = null;
        boolean loadSuccess = false;
        Image img = null ;
        //JAR
        imageURL = getClass().getResource(imageName);
        if (imageURL != null)
          try
            img = Toolkit.getDefaultToolkit().getImage(imageURL);
            loadSuccess = true;
            return img ;
          catch (Exception ilex)
            System.out.println("Error loading image from JAR: " + ilex.toString());
        else
          System.out.println("Unable to find " + imageName + " in JAR");
        //DOCBASE
        if (loadSuccess == false)
          System.out.println("Searching docbase for " + imageName);
          try
            if (imageName.toLowerCase().startsWith("http://")||imageName.toLowerCase().startsWith("https://"))
              imageURL = new URL(imageName);
            else if(imageName.toLowerCase().startsWith("file:"))
              imageURL = new URL(imageName);
            else
              imageURL = new URL(m_codeBase.getProtocol() + "://" + m_codeBase.getHost() + ":" + m_codeBase.getPort() + imageName);
            System.out.println("Constructed URL: " + imageURL.toString());
            try
              img = createImage((java.awt.image.ImageProducer) imageURL.getContent());
              loadSuccess = true;
              System.out.println("Image found: " + imageURL.toString());
              return img ;
            catch (Exception ilex)
              System.out.println("Error reading image - " + ilex.toString());
          catch (java.net.MalformedURLException urlex)
            System.out.println("Error creating URL - " + urlex.toString());
        //CODEBASE
        if (loadSuccess == false)
          System.out.println("Searching codebase for " + imageName);
          try
            imageURL = new URL(m_codeBase, imageName);
            System.out.println("Constructed URL: " + imageURL.toString());
            try
              img = createImage((java.awt.image.ImageProducer) imageURL.getContent());
              loadSuccess = true;
              System.out.println("Image found: " + imageURL.toString());
              return img ;
            catch (Exception ilex)
                    System.out.println("Error reading image - " + ilex.toString());
          catch (java.net.MalformedURLException urlex)
            System.out.println("Error creating URL - " + urlex.toString());
        if (loadSuccess == false)
          System.out.println("Error image " + imageName + " could not be located");
        return img ;
    }Francois

  • Can one add more than one photo layer to a draw image?

    I cannot seem to find a way to add more than one photo or photo layer to a Draw image, but the Draw page on Adobe seems to imply multiple photos can be added. How might I accomplish this? Thanks for your time.

    Unfortunately, Draw is currently limited to one photo layer, and only one photo within that layer.
    Hope that helps,
    Frank
    Draw Engineering

  • HT200285 I want to change my wallpaper to an image that was available before I upgraded to IOS 8.1.3 - a close-up image of long reedy  grasses with hazy light in the background. Greyish hues. Where can find the image & how do I get it back on my phone?

    I want to change my wallpaper to an image that was available
    before I upgraded to IOS 8.1.3 - a close-up image of long reedy  grasses with hazy light in the background.
    Greyish hues. Where can find the image & how do I get it back on my phone?

    I want to change my wallpaper to an image that was available
    before I upgraded to IOS 8.1.3 - a close-up image of long reedy  grasses with hazy light in the background.
    Greyish hues. Where can find the image & how do I get it back on my phone?

  • Looking for an app where i can draw images then text them?

    Looking for an app where I can draw images then text them?

    Just write Draw into the MAS searchbox in the upper right corner and you will be presented with a plethora of drawing/sketching apps of varying abilities and pricing.

  • Specification to Draw image on a page

    Can any one tell me exact Specification to draw image on a page.

    What don't you understand from the PDF Reference?
    You need an Image XObject and the Do operator in the content stream.
    Leonard

  • Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Using the content aware move tool, I want to move an item from one image to another image but it does not seem to work. I think I need two layers on one document so how do I do this

    Good day!
    A simple Paste does not work for you?
    It should place the clipboard content as a new Layer which you can then move around.
    If there is any chance that the elements need to be scaled, rotated etc. I would prefer to place them as Smart Objects (File > Place …) and do the masking that is specific to the images themselves in those.
    Regards,
    Pfaffenbichler

  • TS3391 iMovie 11 is not working. I try to open it and it says it is generating thumbnails for one of my previous projects. All the commands are gray. I have to force it to quit. I just want to capture clips to start a new project.

    iMovie 11 is not working. I try to open it and it says it is generating thumbnails for one of my previous projects. All the commands are gray. I have to force it to quit. I just want to capture clips to start a new project. I googled the problem and there were discussions about deleting files in various folders and renaming clip extensions. I don't like the solutions I saw there and I am not sure they will work.

    Nobody replied so I called Apple. They seemed to think they could fix the problem but I had to agree to pay about $20 first. I told them to put it down as a complaint. I only want to use the software I bought. I can't see that it is my fault it is malfunctioning. I guess I will have to pay. It doesn't seem right.

  • Wanting to use Photoshop CS6 to open images directly from iPhoto 11. Using OSX10.8.2 and iPhoto 11.  Just installed Photoshop CS6 and want to open images directly from iPhoto.    Before I installed PS I was not able to edit photos in iPhoto 11.  Nothing

    Wanting to use Photoshop CS6 to open images directly from iPhoto 11.
    Using OSX10.8.2 and iPhoto 11.  Just installed Photoshop CS6 and want to open
    images directly from iPhoto.    Before I installed PS I was not able to edit photos
    in iPhoto 11.  Nothing happens when I click on ‘edit‘ it is blank. 
    And now it will not work using Photoshop CS6 either.
    From Help Center I have gone to iPhoto/Preferences/ Advanced and chosen Photoshop CS6  to Edit Photos but then cannot find an 'Open' to click? Perhaps this is the problem?
    When I select a photo in iPhoto and click the Edit button - nothing happens.
    Please advise. Glenys

    This may be of help to you:
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
    3 - however, if you get the navigation window
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Note:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.
    OT

  • Problems drawing images form another class

    Ok as the title says I'm having trouble drawing images from a different class. I have a class that represents a plane and it has a draw' method that draws its .gif image.
    public void draw (Graphics g)
    g.drawImage(planepic , xPos, yPos, null)
    then in my main class in the paint method i have
    plane.draw(g);
    I think my problem is the null for my image observer. I tried using null as my image observer and i got a error saying i can't make a static reference to a non static method.
    I've done some research because i never really understood static but i still don't quite get it.
    Also when I use this as my image observer i get a error in my plane object.
    I also just tried passing and making a object for my main class and i still got the static error.
    Any help is appreciated and thanks in advance

    Ok as the title says I'm having trouble drawing
    images from a different class. I have a class that
    represents a plane and it has a draw' method that
    draws its .gif image.
    public void draw (Graphics g)
    g.drawImage(planepic , xPos, yPos, null)
    in my main class in the paint method i have
    plane.draw(g);
    I think my problem is the null for my image observer.
    I tried using null as my image observer and i got a
    error saying i can't make a static reference to a non
    static method. Use a minimal implementation of the ImageObserver to be sure.
    public class Plane implements ImageObserver
    public boolean imageUpdate(
    Image img,int infoFlags,int x,int y,int width,int height)
       switch(infoFlags)
          case ALLBITS:
                    return false;
          case SOMEBITS:
                    return true;
          default:
                return true;
    I've done some research because i never really
    understood static but i still don't quite get it.
    Also when I use this as my image observer i get a
    error in my plane object.
    I also just tried passing and making a object for my
    main class and i still got the static error.
    Any help is appreciated and thanks in advanceWhen you call draw(g) from your other class you hand it a Graphics context that you instantiated somewhere else ie: in another class. Without a more complete example it is really impossible to determine your issue for sure,
    but if I was to guess I would say you need to make sure that the Graphics context handed to the draw(Graphics) method was instantiated from a Component that was already visible. ie: Do a f
    Frame.createImage() from your parent frame after iyou have already called setVisible(true); In other words I suspect you are making and Image from some other Component that is not yet visible. That however is a guess so if not the issue post the rest of the code or at least a minimal implementation that demonstrates this.
    About static:
    static means the class/variable is the same throughout ALL classes of that type and if changed in one instance it will change and thus be the same for all instances.
    You CAN call static by referencing the base class Object without having to instantiate.
    ie:given
    public class SomeClass
    static String name;
    static String getName
       if(name == null)
          name = "DefaultName";
       return name;
    }Thus you could call..
      String name = SomeClass.getName();As opposed to
    SomeClass myClass = new SomeClass();
          myClass.getName();This can get you in trouble if you try to make a method that is static
    that then tries to reference non static variables.
    ie:
    public class SomeClass
    int x;
    static String name;
    SomeClass()
       x=0;
    static String getName
       if(name == null)
          name = "DefaultName";
       x++;
       return name;
    }In this case SomeClass.getName(); will throw and exception because it is trying to access[b] x  from a static context .
    Hope that clears that up for you; if not post a more complete example.
    Good Luck!
    (T)

  • How draw image into frame in applet

    How draw image into frame in applet.Please give my simple example code.

    http://search.java.sun.com/search/java/index.jsp?qt=%2Bdraw+%2Bimage+%2Bpanel+%2Bhow&nh=10&qp=&rf=1&since=&country=&language=&charset=&variant=&col=javaforums

  • I want to create a DVD of JPEG images

    I want to create a DVD of JPEG images from multiple albums in my catalog.  I am using Windows 7 and Premier Elements 11.  I have not been able to insert more than one menu marker in my "video."  Any suggestions?

    BobHabig32453
    I seldom ran across a question to which I could offer an abridged answer. Sorry about that.
    There is an assortment of miscellaneous information to guide your path as to what you can and cannot do with regard to a Premiere Elements DVD Template that represent the Main Menu and Scene Menu set. The number and kind of menu markers that you place on the Timeline are linked to the Menus - Main Menu or Scene Menu depending whether you have placed a Main Menu Marker or Scene Marker on the Timeline. Again, do not put a Stop Marker at the end of the last file on the Timeline.
    Each movie (in your case album) cannot have its own Scene Selection page or pages. All the Timeline scene markers representation found on the Scene Selection page or pages is there in the order that each was placed on the Timeline. There is a limited amount of space under each scene thumbnail, and you do want to avoid button overlap.
    Each main menu and scene menu that came with the program is designed with a certain number of buttons per page (Main Menu page or Scene Selection page).  When the number of Timeline markers exceed the number of designed in buttons per page, the buttons spill over to additional pages (each a copy of the first).
    Most Main Menu pages come with Play All button, Scene Selection button, and some with Main Menu or Bonus Movie button. Most are text type buttons, fewer are thumbnail type buttons for this Main Menu. You see the thumbnail type buttons in the Scene Selection Page, and typically the maximum number there is about 6, may goes to 8 in some rare instances.
    Once you introduce Stop Markers to separate the multi movie type setup, your Play Movie (Play All) button on the Main Menu is meaningless.  And, the reminder, two menu markers cannot occupy the same spot on the Timeline.
    Important to the project are the pixel dimensions of the photos and the duration of the content. If you are heading for DVD-VIDEO on DVD disc Standard or Widescreen, the pixel dimensions should not exceed 1000 x 750 pixel  (landscape) – classical recommendation here and elsewhere. Greater than that typically does not accomplish much other than stressing out the program.  The level of computer resources can often dictate whether the program stress will set in sooner or later. That 1000 x 750 which is not written in stone is close enough to the export standard and will leave some room for pans and zooms if needed. Look to the Premiere Elements burn dialog prior to burn to and look at the Quality Section’s values for Space Required and Bitrate. The DVD-R  4.7 GB/120 min is in reality 4.3 GB and the “for best results” classical recommendation is not to exceed 90 minutes for this type of disc. There is also the DVD double layer disc 8.5 GB (really 7.3 GB)/240 minutes to think about.
    How does this all impact what you outlined for what you would like to do? Many thoughts on that, but for starters:
    Are your photos sized properly for a NTSC or PAL DV Standard or Widescreen project? Are you heading for NTSC or PAL DVD-VIDEO Standard or Widescreen? Are you considering Blu-ray disc format on Blu-ray disc in this regard for your Premiere Elements project.
    How many albums do you envision in each of your planned DVD discs. I suspect the number is going to be in excess of 6 or 8. Here some of the considerations might be:
    …switch the names of the .psd files for the main and scene menu (just the names) so that you can take advantage of the larger number of scene buttons on an already designed Scene Menu. The Timeline markers are Main Menu Markers in this instance, no Scene Markers. Result: One page Main Menu with thumbnails there displaying the first photo in each album.
    …editing the .psd file for a DVD Template to add more buttons to the design. That requires strict adherence to requirements for doing that, including editing with Photoshop CS and later or a version of Photoshop Elements that will open the Layer Groups of the .psd so that you can get at the Folders and Files that you need to modify/duplicate and the like.
    If you wanted text buttons instead of thumbnail buttons, you could look at a DVD Menu such as Faux Widescreen Main Menu Page and customizing that.
    Not sure if long trip descriptions (text) would be feasible. I can offer a how to for creating a page for information before the main menu (like those FBI notices) if you thought that might be appropriate for any overview trip descriptions per disk. Lots of details, Lots of choices, but often with limitations and special considerations if you are restricted to what comes as is with the program.
    Please review the above and then we could fine tune with more specifics.
    Thanks.
    ATR

Maybe you are looking for

  • Error while creating Manual Service PO in Extended Classic Scenario

    Hi Experts, Extended Classic scenario (SRM 7.0 with ECC 6.0)  While Creating Manual Service PO in SRM i am getting the below mentioned error messages. Can any one suggest what could be the problem. Error Msgs: 1. Backend Error:In case of account assi

  • Easy Question about resizing video

    I searched 'Resizing Video' and there was too many unrelated results to a really simple question. In my old program "Premiere', to resize and move a video around was very easy. You could adjust the scale and X-Y values numerically, or you could use a

  • XML and 8.1.6

    Hi all, I need to implement storage of XML strings in Oracle 8.1.6 for a web-based application, IIS, Active Server Pages, etc. What are my options and the best way to go about this? Thanks In Advance...

  • How to permanently get rid of ads, pop up surveys and all pop ups

    I have recently been getting bombarded with pop ups, ads and surveys coming up on pretty much every Web page I visit. Iv tried many different things to get rid of this. Iv download ad block plus, iv removed all extensions and iv reset firefox to defa

  • Maintenance Wizard install

    I would normally post this to the Maintenance Wizard forum, but it appears to still be inadvertantly archived. In the Maintenance Wizard Install Instructions (329476.1), Step 1. a. ii. h. says: Verify that $HOME does not have execute permissions for