Anyone else notice that facial recognition does not recognize people with "white/silver" hair?

I have several family members who are premature gray and have full heads of hair and the facial recognition ID's them about 25% of the rest of my subjects. anyone else notice. and their hair is in exposure.

Same thing here.  Lr had a hard time with a couple people with pure white hair.  About the same 25%.

Similar Messages

  • Has anyone else noticed that iBooks search does not find all information that should be located for a specific search criteria?

    I am converting a novel to ePub format.  I am currently in the process of adding "end notes" to the book.  Each will have a flag embedded at the proper spot in the various chapters that is coded as "[See End Note xx]" where xx is a one or two digit number.  Each of the flags has those words surrounded by the HTML that links the flag to the proper end note at the back of the book.
    To verify that I have indeed inserted correctly each end note, I copy the book's epub file from my desktop PC to the iPad.  I then do a search in iBooks to locate each occurance of "[See End Note" or just "End Note".  I should see each of these flags listed.  Last night it would list all of them except "[See End Note 28]"!   If I did a search for "28", it would appear.
    I then copied just the flag itself ("[See End Note 28]") without the associated linkage HTML to the back of the document, and placed the copy just in front of the paragraph that contains it. Neither of the two flags were found.
    I then duplicated just the flags for end notes 27 and 29 which the search function had located.  I placed the copies surrounding the copied flag for 29.  The result was as follows in the text of the book:
    [See End Note 27]
    [See End Note 28]
    [See End Note 29]
    Although 27 and 29 were still being shown in their normal places, none of the above three inserted (test) flags was displayed by the search!
    It seemed that the iBooks search goes through part of the book, but cannot take the whole book in one piece.  It then continues, but leaves a gap that is not scanned per the search criteria.  To test that theory, I removed the entire text of several chapters that did not contain any end notes.  I then loaded this modified copy of the book into the iPad.  When I ran a search using "End Note", all of the flags (including the special test flags) were displayed.  The list included the "missing" "[See End Note 28]" that cannot be found if the all of the chapters have their text!
    I shall be calling Apple in a few minutes to again attempt to get the apparent "bug" (aka design or coding flaw) removed such that it does not
    impact the ability of the iPad to be a useful tool.

    Not all movie studio signed up to the agreement with Apple to allow redownloading of movies, only those that did will have their movies available in the purchased section of iTunes.

  • Has anyone else noticed that Auto-Brightness does work on iOS 6?

    I recently  noticed that Auto-brightness does not work under iOS 6 for my iPhone.  Anyone else experiencing the same problem?

    If it were the iOS, there would be a tremendous number of folks with this issue.
    It is not the iOS.
    If resetting doesn't solve it, try restoring.

  • Has anyone else noticed that Software Update is not requiring a password to install updates?

    I noticed this started after the 10.6.6 update on all my Macs.  Anyone else experiencing this?

    Thomas A Reed wrote:
    The whole point of the password is to prevent software from installing without the user or admin definitively accepting that it is ok to do so.
    Actually, it is to give access to areas that you don't normally have access to, and in the case of updates coming straight from Apple and installed from an admin account, it has been deemed safe not to request a password.  I believe those updates are verified by the system somehow, so they cannot be malicious unless someone hacks Apple, and then you'd still think nothing of giving your password anyway.  There's no reason to ask for a password in this case.
    I understand this.  It protects the "protected" parts of the system.  But I still think that you should have the last say even if Apple is as trusted as they are.  At the end of the day it is still your computer.  I deal with hardware that requires firmware and software on a regular basis, and just because the company says it is ok to do an update, does not always make it appropriate to do so.  A lot of times it causes more harm then good.  There have been several cases (like iPhoto) recently where you may want to hold off on an update, and allowing all the packages to install in a bundle without a password opens you up for potential issues.
    Thomas A Reed wrote:
    anyone can come along in your house and run updates without your knowledge
    If you've got untrusted people using your admin account, you have bigger problems than someone installing an Apple software update without your knowledge.  If you are security-minded, you don't do that, and thus this issue becomes moot, and if you're not security-minded, then the issue is moot because you don't care enough to secure your computer.
    Perhaps that read different from how it was intended to sound.  My intention for that statement was not to suggest that I do not fully trust my family, but rather that they may not know what they are doing.  Surely you have someone in your family that comes to you for computer advice?  The password was an added security feature that gave me piece of mind from one of those "I don't know what just happened all I did was..." moments.  If I wasn't security minded, do you think I would waste my time expressing an opinion about a security issue?
    Thomas A Reed wrote:
    this opens a door for OSX to automatically add these updates in the future without your consent as long as Apple deems them appropriate
    Don't you think that's a little paranoid?  Why would Apple do that?  Microsoft tries to copy Apple, not the other way around.
    Actually no I don't think it is paranoid.  I do agree that Microsoft copies Apple in every which way they can, and I am a 100% non-Windows household.  I simply see this as a potential pitfall that Apple has opened up.  Even though I do love, admire, and trust Apple, at the end of the day they are a business, and in such a decision could be made to "protect" its user base by allowing OSX to automatically add any updates they deem necessary whenever they want in order to "protect" the perception of their product.  As I stated above, not all updates are wanted right away.

  • Is anyone else finding that the acceloromiter does not seem to work in some aps with iOS7

    Have recently (as most would have) upgraded to iOS7 on my iPad and iPhone, love it but I am find a few of my apps like eBay and remote do not rotate to landscape naymore. any one else with  this issue and is there a fix?

    As hunter9000 pointed out above, your code has syntax errors; are you even able to compile this?
    The braces "{" and "}" delimit classes, methods, and blocks ( including if/ while/ for etc ).
    Methods must be within classes i.e. after the opening brace and before the closing brace of a class.
    Similarly, statements and other blocks must be within the method.
    In your code, you have blocks simply floating about in your class, NOT allowed. They must be in a method. This is why proper indentation is important, anyone would be able to catch problem like this with just a quick glance.
    public void enter()
        {//opening brace for the enter method
            numberOfVisitors = numberOfVisitors + 1; //This takes the number of visitors adds it to itself and then adds 1
            totalFees = totalFees + fee; //This takes the fees of the day adds it to itself and then adds 12
    //    } //NO! You're closing the method too early. More content follows.
    //    { NO! You're making an unecessary block here
    //, reducing readability and potentially putting variables out of scope
            if(numberOfVisitors == 10)
            { //If the number of visitors = 10 then it should set isFull = True
              //opening brace for your if block
                isFull = true;
            }  //close the if block
    //        {//NO! again, unecessary block
            if (isFull)
            { //Once it is true the string should be shown to say that know more people can enter.
                System.out.println("The Exibition is currently full");
    //} extra brace from earlier
    }//close the methodClearer now?

  • Adobe is great software but has anyone else noticed that Corel has a better line drawing tool?

    Adobe is great software but has anyone else noticed that Corel has a better line drawing tool? I end up doing all my line drawing in Corel because it is so simple and then importing it into adobe. You would think, with all these updates that they are constantly doing Adobe would think to simplify it's pen tool. I'm talking about the pen tool in illustrator. Don't even get me started on the bloody rubbish pen tool they've got in photoshop. It makes deep etching something properly a really agonising task.

    I'm not sure that I followed everything, but you got a replacement phone and continue to experience problems? It sounds like a logical move would be to have AT&T replace your SIM card. I would doubt that the size/fit is an issue, these things are a standard size, but replacing the SIM will have an impact on the network set-up that might be the root cause.

  • I suddenly cannot email photos from iphoto. I get a box that says "server does not recognize username or password". I now have to use regular email and cannot re-size my photos.

    Suddenly I can no longer email photos directly via iphoto mail.  The box comes up that says "server does not recognize username or password".  I used to be able to re-size my photos before sending so that they jpeg or pixels were larger for publishing in newspapers or magazines, but I can no longer do that.  Apple tech support told me to change my iphoto "preferences" to using regular email to send.  But that does not allow me to re-size.  Is anyone else having this problem?  I don't know if there was an update that caused this or what?  Please help.

    The box comes up that says "server does not recognize username or password".
    That error message usually will pop up, when there is a conflict between the "From" setting for the mail account you are sending from and the selected outgoing mail server. Probably the outgoing Mail server is receiving a user name and password it does not understand. When the mail returns unsent, do you see the "Try again" panel with the option to select a different outgoing mail server?
    If you do not see this panel, change the Mail "Preferences > General" to "If Outgoing server is unavailable: Show a list of alternate servers". This way, you will know, which server Mail is trying to send from.
    Have you tried to set "From"  pop-up menu to one of your other email addresses?  If that works, change your settings in Mail to always send from this address. You can set this option in the Mail "Preferences > Composing: Send New Messages from". I have my "Send New Messages from" set to "iCloud". That is working best for me with iPhoto.

  • I am trying to update my i-tunes.  It says that i-tunes does not recognize the server.  What should I do?

    I am trying to update my i-tunes.  I keep getting the message that i-tunes does not recognize my server?

    Follow these instructions. When you restore the iPod as the articles say the iPod will also be updated.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities
    Sync Your iOS Device with a New Computer Without Losing Data - How-To Geek
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • I cannot email photos from the iphoto program?  Message says that the server does not recognize password or username?

    When trying to email  a photo from the iphoto program a message appears saying that the server does not recognize the password/username.  How do I correct this?

    You've posted twice. I replied here: https://discussions.apple.com/thread/3421137?tstart=0

  • Unable to email photos, receive a statement that the server does not recognize my username and or password, have checked multiple times that these are correct

    I am unable to e-mail  photos, receive a statement saying that the werever does not recognize my username and or password. I have checked multiple times and these are correct.

    The box comes up that says "server does not recognize username or password".
    That error message usually will pop up, when there is a conflict between the "From" setting for the mail account you are sending from and the selected outgoing mail server. Probably the outgoing Mail server is receiving a user name and password it does not understand. When the mail returns unsent, do you see the "Try again" panel with the option to select a different outgoing mail server?
    If you do not see this panel, change the Mail "Preferences > General" to "If Outgoing server is unavailable: Show a list of alternate servers". This way, you will know, which server Mail is trying to send from.
    Have you tried to set "From"  pop-up menu to one of your other email addresses?  If that works, change your settings in Mail to always send from this address. You can set this option in the Mail "Preferences > Composing: Send New Messages from". I have my "Send New Messages from" set to "iCloud". That is working best for me with iPhoto.

  • Has anyone else noticed that the iOS 6 Maps App is missing the area code for many places it has listed?

    If I try to look up a local business on the Maps App it drops a pin on all of the locations matching my search parameters. However, when I get details about a dropped pin, the phone number is usually missing the area code! For example, if the phone number is +1 (123) 555-5555 it would show up as +1 (555) 555-5. This makes it impossible to call directly from the maps app or to copy and paste infront of a manually entered area code (because of the '+1'). Has anyone else noticed this?

    Have you checked to make sure that your region settings are correct?
    Settings>General>International>Region Format

  • Has anyone else noticed that Adobe Camera Raw 7.x exhibits odd behavior compared to version 6.x?

    I have found no discussion of this subject on Adobe's forums, so I am asking here. I find that Adobe Camera Raw 7.x's "auto" mode frequently produces overexposed images with lots of blowouts necessitating much more manual tweaking than was required with the older 6.x series of plug-ins. Has anyone else noticed this behavior?

    I have found no discussion of this subject on Adobe's forums, so I am asking here. I find that Adobe Camera Raw 7.x's "auto" mode frequently produces overexposed images with lots of blowouts necessitating much more manual tweaking than was required with the older 6.x series of plug-ins. Has anyone else noticed this behavior?

  • I have a 5th generation IPod (Nano?) that I have registered to my ITunes Account.  Recently bought my daughter a 7th generation IPod Nano for her B-Day and Am trying to sync it to my ITunes acct. Message appears that says it does not recognize new Ipod.

    I have a 5th generation IPod Nano that I have registered to my ITunes account.  I recently bought my daughter a 7th generation IPod Nano and have attempted to sync this new IPod to my ITunes account.  A message continues to appear saying that it does not recognize the (new) device...   Any suggestions ??

    How to use your iPod to move your music to a new computer

  • Where can I get a browser that does not blind me with WHITE pages?

    Where can I get a browser that does not blind me with ghost WHITE pages? it's like being in a hospital -uggg!

    Hello,
    Your form author needs to read extend the form using Adobe Acrobat, then you should be able to fill and save the form in Reader. For more information, please see this http://www.adobepress.com/articles/article.asp?p=2158443&seqNum=3
    ~Deepak

  • Downloaded photoshop CS6 to my new iMac. Opened photoshop but can't bring in a photo from iPhoto - get message that says photoshop does not recognize this type file. Suggestions?

    I donwloaded photoshop CS6 to my new iMac. Opened photoshop but cannot openn a photo from iPhoto library - I get a message that says cannot complete  our request becausse photoshop does not recognize this type file.
    Suggestions?
    Rick

    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

Maybe you are looking for