Create a program that recognizes the human face , any API or idea?

Hi , I try to create a program that recognizes the human faces, taking images from a webcam , but i don´t know how do it , any API or idea?

shays wrote:
sabre150 wrote:
malcolmmc wrote:
Don't be so negative.I can never understand why negative realism should be so looked down upon. I also can't understand why verbal abuse is looked down on when it can be taken so constructively. In fact I feel the same about physical abuse, why do people shy away from it when it clearly shows how we really feel. Who needs courtesy, it doesn't do anyone any good. And lets take off the turn signal on cars, I don't need some light to tell you that I am about to cut you off. And we should definitely use the car horn more often. Any time I see an ugly car I get right behind them and lay on the horn. What's wrong with that. ; )So you want me to be unrealistic? So you want me to be upbeat about the OP's chance of creating a face recognition program? So if I see you about to jump off a cliff you want me to say - go for it, it won't hurt much, you will gain much from the experience?
And where was this verbal abuse? In reply #4 I was sarcastic (as you are in your post) but to my mind not abusive. In reply #6 I was critical of the OP's approach but to my mind not abusive.
Get real.

Similar Messages

  • I'm creating a program that caluclates the area of a triangle & rectangle

    Hi. I am reposting this topic in order to post it correctly. I will begin with my questions. I am to ask user to enter either rectangle or triangle to find the area of shape or to hit X to terminate the program. Have I coded this correctly? I am to use while and if loops which calls methods from CalculateAreaOfShapes. I have not attempted the if loops because I'm just not sure how to do them. If someone could give me some suggestions I'd apppreciate it. Next, if user enters Rectangle, I am to call calculateAreaOfRectangle() Have I coded this correctly? Also, If user enter Triangle, I am to call calculateAreaOfTriangle() Have I coded this correctly? The program should not terminate until X is entered. My code goes as follows:
    import java.util.Scanner;
    public class ModifiedTestCalculateAreaOfShapes
         public static void main(String[] args);
              Student Royce = new Student();
              //call student class's print method from student
              Royce.printMyInfo();
              //Welcome to Royce's modified TestCalculaterAreaOfShapes Program!
              System.out.println("Welcome to the Royce ModifiedTestCalculate area program");
              System.out.println("Please enter t to calculate area of triangle or r rectangle");
             //create a Scanner object name sc
              Scanner sc = new Scanner(System.in);
             //modifing this assignment so that the user has a choice until choice isn't equal to "r" or "R", or "t" or "T".
             String choice = ("y");   //Declare the variable to hold the name
             while(!choice.equalsIgnoreCase ("x"));   //Begin program loop
                  //get the users choice "t" or "r"
                   System.out.print ("Enter (t/r): ");
                   String user = sc.next();
                    System.out.print("Enter shape: ");
                    double shape = sc.nextShape();
                    System out.println("Please enter t to calculate area of triangle, r for recctangle or x to quit\n")
                    //Asking the user to make a choice.
                              //create a Scanner object for if statements/
                              if(choice1.equals("t"))  //If choice is t then call calculateAreaOfShapes for my code
                                              //calculate the area of a Rectangle and a Triangle
                                            CalculateAreaOfShape.Shapes = new CalculateAreaOfShapes();
                                            double TriangleArea = Shapes.calculateAreaOfTriangle(height*base)/2
                                            else if(choice1.equals("r"));
                                                      double RectangleArea = Shapes.calculateAreaOfRectangle(height,width);
                             //display the area for each
                             String message = "Area for triangle: " + areafortriangle + "\n"
                                               + "Area for rectangle:" + areaforrectangle + "\n"
                                               + "Total area:        " + total + "\n";
                             System.out.println(message);
                             //see if the user wants to continue
                             System.out.print(Continue? (r/t): "){code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    No, let's continue in your original thread:
    [http://forums.sun.com/thread.jspa?threadID=5390499]

  • Hello, I trying to create a program that would run a household furnace. I can't find a way to set timers for the ignitor,flame sensor and blowers. Any thoughts.

    Hello, I'm trying to create a program that would run a household furnace. I can't find a way to set timers foe the ignitor,flame sensor and blowers. Any thoughts would be greatly appreciated. Thanks, primetime

    In the detailed help for the event structure there is a link to caveats and recommendations for using event structures.  It is a good starting point.
    It is courteous to let the Forum know when your questions are related to a school assignment or homework.  We are glad to help you learn LabVIEW, but do not do your homework for you.
    You have learned the major disadvantage of the sequence structure: It must run to completion before anything else can happen.
    If you are building a state machine (typically a while loop with shift registers enclosing a case structure with one case per state) and having trouble with timing, then think about your requirements. Apparently you have some time delays, but under certain conditions you must terminate a delay/wait and do something else.  One way of doing this is to have a Wait state.  The wait state has a short delay, determined by the minimum time you can delay responding to a changed condition, and a check to see if the required elapsed time has occurred.  If the time has not elapsed, the next state is the Wait state again.  The state machine can repeat any state as often as necessary.  So a 15 second delay could be implemented by going to a Wait state with a one second wait 15 times. Any error or new command will see a response in no more than one second.
    Lynn

  • How to create a program that accepts 5 digits from the user between 0 and 9

    how to create a program that accepts 5 digits from the user between 0 and 9 then put them in ascending order using link-list method..

    You can use a scanner to get user input from the command line.
    import java.util.*;
    public class Test {
        private List<Integer> list;
        private Scanner in;
        public static void main (String... args) {
            new Test ();
        public Test () {
            list = new LinkedList<Integer> ();
            in = new Scanner (System.in);
            for (int i = 0; i < 5; i ++) {
                System.out.format ("Please enter a number (%d more): ", (5 - i));
                list.add (in.nextInt ());
            Collections.sort(list, new Comparator<Integer> () {
                public int compare (Integer i1, Integer i2) {
                    return i2 - i1;
            System.out.println (list);
    }

  • So I formatted a brand new hard drive to MAC OS (Journal), I then could save on the hard drive. Not two days later Im back at square one, the program wont recognize the hard drive again.

    So, hard to beleive, but I am having some trouble with Final Cut Pro X.
    This last week I formatted a brand new hard drive to MAC OS (Journal),
    so that I could save on that hard drive.
    Well it went great.
    I saved my project on there and copied a few others over as to free up space on my Laptop.
    Then, not two days later Im back at square one,
    the program wont recognize the hard drive.
    It wont even open the events up off my hard drive,
    as to jog the program into reqcognizing the scratch disk (which worked twice before).
    What happened?
    How do I get the program to re-recongize my newly formatted hard drive?
    Please help!

    The name of the drive, or the name of some folders inside the drive, may fool FCP X into believing it is a camera.
    Also, you should not use the drive for time machine backups.

  • Creating java program that orders 3 numbers in ascending order using if els

    Does anyone know what code to use for creating a java program that uses the if else operators to order 3 variables in ascending order?

    nar0122 wrote:
    correct on the homework assumption...you have a good nose...the thing is...i know i need to make an if statement saying if a is less than b, and a is less than c...print a first...but how do i get it to "print a" first? if a is less than c and b...and so on for b and c? sorry if that was confusing...
    int a = ..., b = ..., c = ...;
    if(a > b AND a > c) {
      print a
      if(b > c) {
        print b, print c
      } else {
        print c, print b
    etc.

  • How do I create a filter that bypasses the in page and goes directly to spam rather to delete?

    How do I create a filter that bypasses the in page and goes directly to spam rather than to delete?

    From your question I'm going to guess you are talking about Mac Mail.
    If you are talking about a RULE then the "Perform the following actions:" would be to select "Move Message" to mailbox "Junk" instead of "Delete Message."
    If you are talking about something else then please give more information.

  • I would like to create a form that gives the user opportunities to provide information on as many as 50 projects. Does Adobe FormsCentral allow for this "expandable" type of form, such that if someone only has 10 projects, they can complete the form as ea

    I would like to create a form that gives the user opportunities to provide information on as many as 50 projects. Does Adobe FormsCentral allow for this "expandable" type of form, such that if someone only has 10 projects, they can complete the form as easily as someone with 50 projects. In other words, is there a way to make the form "expandable?"

    Hi Ms Buckner,
    Yes, you can do this with the Show/Hide "Skip" logic rules.
    1. Suppose, for example, you have your first ten projects showing by default.
    2. At the end of those fields, you would have a Yes/No question asking if the person wanted to add more projects.
    3. If they answer "No", they move on to the next section/area/question/etc.
    4. If they answer "Yes" you have the form display ten more project fields that you had already included, but you had hidden up to this point.
    5. Repeat steps two, three, and four as often as needed. (It helps that you can copy and paste fields, including groups of questions, so you don't have to manually re-create them each time.)
    It means you must anticipate the maximum number of times you want to provide project fields, but you've already done that, and you have to build the form with that maximum number, but only display smaller portions at a time until they have filled in all they need.
    I hope that helps,
    Brian

  • How to create a program that will accept a series of strings of 0 and 1 onl

    how to create a program that will accept a series of strings of 0 and 1 only then displays 0 as 48 and displays 1 as 49.

    Isn't one thread enough for your homework?
    http://forum.java.sun.com/thread.jspa?threadID=5253850&messageID=10051155#10051155

  • Can I create order forms that calculate the exact total with taxes?

    Can I create order forms that calculate the exact total with taxes?
    The customer needs to know exactly how much everything will cost before submitting. I can handle the actual payment portion manually.

    thanks for the info;
    I'll inform the admin dude that they need an upgraded acrobat to do forms.

  • Outline path to create an outline that includes the rounded edge?

    In illustrator CS6 I have a line with a rounded endpoints. When I try to OUtLINE PATH - it will clip off the rounded edge -- as if I'm asking AI to outline a path with a non-rounded edge. How can I get outline path to create an outline that includes the rounded edge? Many thanks!

    Karen,
    It sounds like something that may require something from this list.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Is there any calendar /contact program that has the depth of power-on Now up-to-date that will run on Lion?

    is there any calendar /contact program that has the depth of power-on Now up-to-date that will run on Lion?

    This can be done easily with ethernet.
    Please follow the instructions strictly.
    To make it easier I want you to do this overnight so you can turn off all your current connection to the internet.
    Just go to the airport fan in to the top right and turn airport off.
    Get ethernet cable and connect the laptop to the TC lan port.. ie <-> ones.
    Press and hold the reset on the TC for about 10sec. until the front led flashes rapidly.
    Open the airport utility.. go to manual setup and change the wireless to off. (so other people around you cannot join your network of one).
    Ignore all the errors.. they won't stop the backup working.
    Go to the TM and reselect the backup target disk as the TC.
    It should start after 2min and run through to completion.
    That is it.. for a backup of many GB it might take a few hours.. so make sure the laptop has power plugged in and the sleep is off.. (on early ones I think this is needed but I am a late arrival to the scene).. sleep doesn't affect later OS.

  • I have a Sony radio in my car.   With IOS  4 on my IPhone I could use the docking plug to the usb input on the radio and stream ESPN radio or pandora to the radio.  After upgrading to IOS 5 on the phone the Sony radio will not recognize the phone .  Any t

    I have a Sony radio in my car.   With IOS  4 on my IPhone I could use the docking plug to the usb input on the radio and stream ESPN radio or pandora to the radio.  After upgrading to IOS 5 on the phone the Sony radio will not recognize the phone .  Any thoughts.

    I am reading on this site about the error I am getting and it wants me to change some files that I am not comfortable messing with. Mainly because it is like a foreign language. Will the store do this for me or tell me if it is neccessary?

  • I've recently noticed that since the last upgrade any links to pdf files on websited no longer work. All I get is a blank white page or a blank black page when I click on these links. Can I fix this?

    I've recently noticed that since the last upgrade any links to pdf files on websited no longer work. All I get is a blank white page or a blank black page when I click on these links. Can I fix this?

    YAY!! I have Safe mode!!
    um, now what?

  • HT5634 I already install bootcamp 5 on my Macbook Pro MD101 (Mid 2012). But when I plug the USB, my Mac can not recognize the USB or any Storage device. Pls help

    I already install Bootcamp 5 on my Macbook Pro MD101 (Mid 2012) but when I plug the USB, my Mac can not recognize the USB, also any storage device. Pls help !!! I am using Window 7

    I ran an Apple Hardware Test, says ''No trouble found'.

Maybe you are looking for

  • STARTING FROM THE BEGINNING OF A TV SERIES

    Sorry if this is a bit thick but I can't seem to play a TV series I've bought the series pass to from the start. Whenever I click on TV shows, it starts from the last episode and I have no idea of how to start from the beginning. Does anyone have a c

  • External Routines

    I try make the external routine writen in C. Function writen in C and stored in D:\extproc\zzz1.dll I make the library and function CREATE or replace LIBRARY externProcedures AS 'D:\extproc\zzz1.dll' create or replace function pls_max(x binary_intege

  • Ipod touch froze when updating to itunes

    my ipod is frozen after trying to update to itunes. stated that it couldnt be updated then stayed frozen. i cant get it to turn off or for my computer or my itunes to recognize it

  • Variable based on

    Hello everyone! I'm just learning JSP right now so I hope I can explain my problem correctly. If i'm not making sense please let me know. I have a table (FormFields) in my database that stores which fields should be displayed on my web form. The tabl

  • AirPort will not stay connected

    I have my wireless dsl modem in the same room as I am and it will connect sometimes and if and when it does, Im lucky if it stays connected for 5 minutes. Strange though if I go in my bed room, one room away, I have better chances of connection for a