Is there any way to force iPhoto to present faces by folder for identification rather than randomly?  Would provide better context for identification especially if a huge number of images is involved.

Before I commit the time and energy required to load and tag faces in 25,000 images within iPhoto, I need some questions answered;
Is there any way to force iPhoto to present faces by folder for tagging rather than randomly?  When so many images need tagging, over many years, the context of a folder helps with the identification. The work around is to load the images into iPhoto one folder at a time and do the tagging then.
How do I get iPhoto to present the tagged faces by last name rather than first name? When so many faces will be identified, it is much easier to find people by surname, particularly when I share the library within the family. The work around is to enter names as last name and first name.  Being able to toggle the sort is much more desireable.
Is there a way to export a portion of the library including faces?  I want to pass on portions of this huge 125 GB library to my family members.
Since my family members will need an Apple computer to view the images and faces, they will likely have their own photo library.  So is there any way to combine two libraries and merge the faces?
About 2/3 of my images have been scanned, so the date of creation is the scanned date rather than the date the photo was taken.  Will this mess up any sequencing or the retrieval of faces?

If I want to carve off part of a library, I presume the way to do this is to make a copy of the library using PLM then go into iPhoto and delete what I don't want.  The result is the carved off portion.
You don't need Library Manager to delete the portion you don't want.
As a general rule: when deleting photos do them in batches of about 100 at a time. iPhoto can baulk at trashing large numbers at one go.
If I want to merge two libraries, PLM implies that it will do this but will the Faces be merged too?
I believe so.

Similar Messages

  • Issue: I synced my iphone with itunes, I then deleted many songs from the iphone, when I sync to itunes again is there any way to have itunes duplicate what it sees on the iphone rather than the other way around?

    Issue: I synced my iphone with itunes, I then deleted many songs from the iphone, when I sync to itunes again is there any way to have itunes duplicate what it sees on the iphone rather than the other way around?

    so, if I delete all music on itunes then connect my iphone all my music on the iphone will then be deleted?

  • Messages - Is there any way to resend texts automatically when you don't have signal, rather than having to constantly manually 'try again'?

    When i have no signal and send a text, a red circle appears, prompting me to manually resend the text when i find signal. I live in an area with varied signal so this is beginning to get frustrating. Is there any way to set the iphone so it will automatically resend the text when it finds signal again, rather than having to manually resend it everytime? Thanks

    When i have no signal and send a text, a red circle appears, prompting me to manually resend the text when i find signal. I live in an area with varied signal so this is beginning to get frustrating. Is there any way to set the iphone so it will automatically resend the text when it finds signal again, rather than having to manually resend it everytime? Thanks

  • Is there any way to slap iPhoto

    Search will not find.
    Some photos will not come up in the search. I see them in the library. For instance I have a photo captioned Clown. When I go to the search window and type in Clown it does not come up. I re-labeled it, but still it won't be found. I re-indexed the library using command+option during iPhoto start up but it is to no avail.
    Is there any way to slap iPhoto into recognizing my captions?

    I have two more suggestions:
    1 - try using Spotlight Indexer to force a new indexing of just the iPhoto Library folder.
    2 - rebuild the library using iPhoto Library Manager. It creates an entirely new library folder by copying the information it needs from the database files and the photo files it needs. It often succeeds where the normal rebuild does not. Then afterward try #1 on the new folder. If the new library is not what you want you can just delete it and go back to the original one. Here's how:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    In the next window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: It can take some time to create the new library if you have a lot of photos. One user reported that with a library of about 5,000 images it took about 12 hours so plan ahead.

  • Is there any way to force time machine to keep retrying after disk i/o error?

    a little background to my problem:
    i've had a hard drive problem previously, and i managed get all the data off of my mac by trying and retrying to access the same files and also from my working time machine backup. after zeroing out and reformatting my drive and doing a clean install of Mavericks i had everything back up running no problems.
    recently, my macbook pro would be stuck and slow in recently imported iphoto pics so i figured my hard drive is really failing this time around
    i try to get a time machine backup to save what i can, but after a couple of tries time machine would just stop backing up and in console i would see a disk i/o error.
    is there any way to force time machine to keep trying to backup through the disk i/o error so i can save what i can before getting a new drive?
    edit: a little more info, i know i have a harddrive error from looking at the console, but when i do a verify disk in disk utility it comes up clean and even after doing a disk repair it comes up clean i still see disk i/o errors in the console.

    See:
    *http://kb.mozillazine.org/Preferences_not_saved
    Thee can also be a problem with the file(s) that store the extensions registry.
    Delete the files extensions.* (extensions.sqlite, extensions.rdf, extensions.cache, extensions.ini) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry.<br />
    New files will be created when required.
    See "Corrupt extension files":
    * http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to do a compatibility check or see if there is an update.

  • Is there any way to force purchase an unsupported app?

    I'm currently stuck on OS X 1.7.5 since my MacBook Pro isn't compatible with anything more recent than that.
    However, I'll be upgrading to a new Retina MacBook Pro very soon and I'd like to purchase an OS X app that requires 10.8, since it's currently heavily discounted.
    Is there any way to force purchase it on my 10.7.5 system so that I'll be able to use it when I upgrade to a new Mac?
    Thanks!

    No.
    GB

  • Is there any way to force Sun C++ Preprocessor preserve whitespace?

    Hello!
    I'm preprocessing simple source file:
    void test()
        int i;
    }with command: CC -E test.cpp
    and CC preprocessor eats all whitespace at the beginning of each line, like this:
    void test()
    int i;
    }Is there any way to force CC preprocessor preserve whitespace?

    You cannot use the C preprocessor on C++ code, for at least two major reasons.
    1. The default -I options in CC are not the same as for cc. Try adding
    #include <iostream>
    #include <cstdlib>
    to your example.
    Even if you add the missing -I options, the conventions for finding the C++ standard headers are not known to the C preprocessor.
    Example:
    % cc -P -I/opt/SUNWspro/prod/include/CC/Cstd -I/opt/SUNWspro/prod/include/CC -I/opt/SUNWspro/prod/include/cc z.c
    "z.c", line 2: cannot find include file: <cstdlib>
    cc: acomp failed for z.c2. The predefined macros (-D options and predefined macros built into the compilers) are different for cc and CC.
    In particular, the C compiler predefines macros saying it is a C compiler. The C++ compiler predefines macros saying it is a C++ compiler. Code that is conditionalized on whether it is compiled by the C or C++ compiler will give different results. If you add -D options for C++ macros, the results will depend on the way the tests are coded. That is, testing for a C compiler or a C++ compiler will not give mutually exclusive answers, as they would if you use the correct compiler. The Solaris headers have conditional code for C and C++.

  • IS THERE ANY WAY TO FORCE KEY COMMIT

    Hi:
    Is there any way in forcing when inserting/updating a record in a block to call KEYCOMMIT. For Example, if the user inserted/updated a record and before saving the user may quit the form. I would like to enforce the keycommit trigger to be called when the form is opted to close.

    Hello,
    Try the following in Key-Exit trigger:
    BEGIN
    IF :system.form_status = 'CHANGED' THEN
    DO_KEY('COMMIT_FORM');
    ELSE
    EXIT_FORM(NO_VALIDATE);
    END IF;
    END;
    Regards,
    George
    Hi:
    Is there any way in forcing when inserting/updating a record in a block to call KEYCOMMIT. For Example, if the user inserted/updated a record and before saving the user may quit the form. I would like to enforce the keycommit trigger to be called when the form is opted to close.

  • On a large monitor, the bookmarks toolbar is opening outside of the Firefox window itself - is there any way to force it to stay inside?

    Recently I installed Windows 7 on my computer, along with a device called a Triplehead2Go, which spoofs the operating system into thinking that the computer has one monitor attached (when it really has three). When the Firefox window is relatively small on the desktop and with excess space to the right, the bookmarks toolbar opens to the right (and extends outside of the window). This creates a problem for me, as the monitor bezels get in the way of navigation. When the Firefox window is all the way to the right of the desktop, the bookmarks toolbar opens inside of the window (as there is not enough space to the right for it).
    Is there any way to force this menu to stay within its boundaries?

    The screen dimensions are "right," but I don't want it to use up any more space on-screen than is in the window.

  • Is there any way to force the applet to load the file without using cache?

    Hi,
    I have the applet that renders some data from a file specified as the parameter. The problem is that the user can do something, that changes the input file and reloads the page, but the applet renders old data (from browser cache most probably)
    Is there any way to force the applet to load the file without using cache?
    Regards,
    Zdenek

    The initial view (IV) settings within a PDF file are static tags - they can't be made to dynamically-adapt based on the window dimensions,it's the renderer (Acrobat, Reader, or whatever else is opening the file) that decides if and how it will follow the IV requested by the file header.
    It would be possible to use a Page Open action on the first page of the file, which does some nasty math with the various doc.*WindowRect objects to work out how much "wasted" space there is, and then set the doc.layout and doc.zoomType properties - but page actions are a different concept to IV as the zoom will reset itself every time that page is viewed. Users don't like their application apparently fiddling with the zoom level without being told to!

  • Disc in drive that Mini will not recognize, will not eject. Is there any way to force eject?  The computer says it's empty, but it's not.

    I have a disc in the super drive but cannot eject it because the Mini does not recognize that it's there. I've tried the eject button on top of the screen and in the dvd player controls. I wish there was an eject button on the machine. Is there any way to force eject?
    Thanks.

    RGA,
    Unfortunately, I do not believe that it is possible for a DAQ board to generate an AI Start Trigger from an analog trigger, but not be triggered itself until it receives a digital trigger.
    Spencer S.

  • Is there any way to force Firefox to remember passwords?

    As many have complained about, there is a growing trend for websites to prevent browsers, including Firefox, from remembering passwords. This is absolutely infuriating. Like most people, I have on the order of 100 passwords, and thanks to idiotic, overzealous IT guys who need to justify their own jobs, we are forced to constantly change them to ludicrous, impossible-to-remember combinations of symbols and numbers. (Does anybody really get their accounts stolen because some hacker sits down and tries to guess their password? Somehow I find that very, very hard to believe.)
    First world problems, I know. My question though is simple: is there any way to force Firefox to remember passwords? Perhaps an add-on or external program of some kind? I know there are password manager programs, but the last time I checked, those were all but worthless and didn't work as well as the built-in Firefox support for remembering passwords. Thanks for any help.

    hello andrew, yes you can either [https://addons.mozilla.org/firefox/addon/remember-passwords/ install an addon] or [https://www.squarefree.com/bookmarklets/forms.html#remember_password use a bookmarklet] to circumvent this restriction.
    in an upcoming version of firefox, this functionality will also be built-in directly into the browser: http://www.ghacks.net/2013/12/24/firefox-29-save-fill-autocompleteoff-passwords/

  • If I failed to accept the offer for free apps on my iPhone 5s, is there any way to get iPhoto free?

    If I failed to accept the offer for free apps on my iPhone 5s when I first used the App Store, is there any way to get iPhoto free?

    Try the advice in this link:
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    if...... you accidentally dismissed the popup the first time you launched the App Store on your new device, you can also view all of them in one place in the App Store by following these steps:
    Launch the App Store app from the Home screen of your iPhone or iPad.
    From the Featured tab, scroll down and tap on the New to the App Store? tile under Collections.
    Once again, scroll down towards the bottom and tap on the tile for Apps made by Apple.
    Here you can see a list of all the apps Apple makes. Tap any one of them to view more information on them or tap on the price to download them.

  • Is there any way to view a keynote presentation and the presenter notes on the iPad at the same time?

    Is there any way to view a keynote presentation and the presenter notes on the iPad at the same time? My professors at school have keynote presentations and i take notes during class with the presenter notes feature. I was wondering if there was any way i can view both of them on the same screen on my iPad while studying? This way I could see their slides along with the notes i take during class.

    None that I know of. Suggest to Apple.
    Send feedback to Apple.
    http://www.apple.com/feedback/ipad.html
     Cheers, Tom

  • I sent my Iphone 5c in for repair and when they sent it back my sim card wasn't in it is there any way i can have them send it back or do I need to get a new sim card for it?

    I sent my Iphone 5c in for repair and when they sent it back my sim card wasn't in it is there any way i can have them send it back or do I need to get a new sim card for it?

    You'll have to get a new one from your carrier. I believe the shipping instructions for mail in service explicitly tell you to take it out as you will most likely not receive the same phone back. Apple doesn't repair most phones, they replace them.

Maybe you are looking for

  • Trying to update Project scheduled finish date - newbie help needed!

    Guys, I am super new to Oracle Projects, I have never used it before.  I've just learned a few things in the UI and read through the docs documenting the stored procs.  My question is simple (hopefully)   In the UI I choose a responsibility, then und

  • Can I have 2 different apple ids on I pad?

    I have had an Ipad for a while now and have recently upgaded my phone from a sony to an iphone 5c. The apple id on both devices are the same. Can I open another apple id so my husband and I can facetime each other?

  • Goods Receipt w.r.t Outbound Delivery with HU-STO

    Hi All, We are doing STO Process with Handling Unit. When doing GR w.r.t outbound delivery, we select Via.Hand.Units and execute then we enter into it and select the HU and click and copy.Then item OK and Save. Upto here its fine. When i save the GR,

  • Thai Lang Dropdownlist and Listbox show "???????"

    Hi gurus,    My office use SAP/R3 4.6C patch level 21, SAP Gui 620 patch 45-67 and Windows XP sp2 or sp3 when I'm use tcode MIRO or other tcode have screen include dropdownlist or listbox field, it has show "???????" but other field is correct.    Pl

  • 5002 Tax group account is missing

    I'm using the DI Server to add invoices, and I suddenly get "-5002 Tax group account is missing" whenever I try to make an invoice. What's strange, is that this occures only on one of my SAP-databases, whereas the others are ok. Luckily it's in a tes